-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aa6142f
commit 46a2398
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |