From 46a23984044234b7db86d7b191d9811d261273aa Mon Sep 17 00:00:00 2001 From: Umar Butler Date: Thu, 11 Apr 2024 15:06:15 +1000 Subject: [PATCH] Added a .gitignore. --- .gitignore | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8c15c7b --- /dev/null +++ b/.gitignore @@ -0,0 +1,25 @@ +# Exclude everything. +* + +# Then, include just the folders and files we want. +!README.md +!LICENCE +!CHANGELOG.md +!pyproject.toml +!src/ +!src/**/* +!tests/ +!tests/**/* +!.github/ +!.github/**/* +!.gitignore + +# Finally, exclude anything in the above inclusions that we don't want. +# Exclude common Python files and folders. +*.pyc +*.pyo +*.ipynb +__pycache__/ +.pytest_cache/ +tests/profiler.py +tests/test_bench.py \ No newline at end of file