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
1 parent aa6142f commit 46a2398
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 46a2398

Please sign in to comment.