-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated .gitignore to remove some build caching and organize a bit be…
…tter
- Loading branch information
1 parent
d672713
commit 321e33d
Showing
1 changed file
with
24 additions
and
7 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 |
---|---|---|
@@ -1,13 +1,30 @@ | ||
.vscode | ||
# Some categories and items copied from https://github.com/github/gitignore/blob/main/Python.gitignore | ||
|
||
# Byte-compiled / optimized / DLL files | ||
__pycache__ | ||
**.ipynb | ||
|
||
.idea | ||
venv | ||
.venv/ | ||
.env | ||
# Distribution / packaging | ||
.Python | ||
build/ | ||
dist/ | ||
sdist/ | ||
*.egg-info/ | ||
|
||
# Unit test / coverage reports | ||
.coverage | ||
coverage.xml | ||
AntaresWebDesktop/ | ||
.tox/ | ||
|
||
# Environments | ||
.env | ||
.venv | ||
env/ | ||
venv/ | ||
|
||
# Jupyter notebooks | ||
**.ipynb | ||
|
||
# Other | ||
.vscode | ||
.idea | ||
AntaresWebDesktop/ |