Skip to content

Commit

Permalink
Added a .gitignore.
Browse files Browse the repository at this point in the history
  • Loading branch information
umarbutler committed Apr 11, 2024
2 parents 337a186 + 46a2398 commit 1c5b658
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,29 @@
<<<<<<< HEAD
**/__pycache__/
=======
# 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
>>>>>>> main

0 comments on commit 1c5b658

Please sign in to comment.