-
Notifications
You must be signed in to change notification settings - Fork 18
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
Thinh Nguyen
committed
Nov 28, 2023
1 parent
a609e49
commit 1775d38
Showing
1 changed file
with
64 additions
and
74 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,87 +1,77 @@ | ||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
# Temporary and binary files | ||
*~ | ||
*.py[cod] | ||
*$py.class | ||
*.so | ||
*.cfg | ||
!.isort.cfg | ||
!setup.cfg | ||
*.orig | ||
*.log | ||
*.pot | ||
**/__pycache__ | ||
.cache/* | ||
.*.swp | ||
*/.ipynb_checkpoints/* | ||
.DS_Store | ||
.mypy_cache/* | ||
|
||
# Distribution, packaging, PyInstaller | ||
.Python | ||
env/ | ||
build/ | ||
develop-eggs/ | ||
dist/ | ||
downloads/ | ||
eggs/ | ||
.eggs/ | ||
lib/ | ||
lib64/ | ||
parts/ | ||
sdist/ | ||
var/ | ||
wheels/ | ||
*.egg-info/ | ||
.installed.cfg | ||
# Project files | ||
.ropeproject | ||
.project | ||
.pydevproject | ||
.settings | ||
.idea | ||
.vscode | ||
tags | ||
profile_default/ | ||
ipython_config.py | ||
|
||
# Package files | ||
*.egg | ||
*.manifest | ||
*.spec | ||
pip-log.txt | ||
pip-delete*.txt | ||
*.eggs/ | ||
.installed.cfg | ||
*.egg-info | ||
environment.lock.yml | ||
|
||
# Unit test / coverage reports | ||
htmlcov/ | ||
.tox/ | ||
# Unittest and coverage | ||
htmlcov/* | ||
.coverage | ||
.coverage.* | ||
.cache | ||
nosetests.xml | ||
.tox/* | ||
.nox/* | ||
junit*.xml | ||
coverage.xml | ||
*.cover | ||
.hypothesis/ | ||
.pytest_cache/ | ||
.pytest_cache/* | ||
|
||
# C extension, Translations | ||
*.so | ||
*.mo | ||
*.pot | ||
# Build and docs folder/files | ||
build/* | ||
site/* | ||
dist/* | ||
sdist/* | ||
docs/api/* | ||
docs/_rst/* | ||
docs/_build/* | ||
cover/* | ||
MANIFEST | ||
|
||
# editors: vscode, emacs, Mac | ||
.vscode | ||
**/*~ | ||
**/#*# | ||
**/.#* | ||
.DS_Store | ||
# Per-project virtualenvs | ||
.venv*/ | ||
.conda*/ | ||
|
||
# Django, Flask, Scrapy, Sphinx, mkdocs | ||
# PyBuilder, Jupyter, SageMath, celery beat | ||
*.log | ||
local_settings.py | ||
instance/ | ||
.webassets-cache | ||
.scrapy | ||
scratchpaper.* | ||
docs/_build/ | ||
/site | ||
target/ | ||
.ipynb_checkpoints | ||
celerybeat-schedule | ||
*.sage.py | ||
# Configuration files | ||
*.env | ||
|
||
# dotenv, virtualenv, pyenv, mypy | ||
./.env | ||
.venv | ||
venv/ | ||
ENV/ | ||
.python-version | ||
.mypy_cache/ | ||
|
||
# Spyder/Rope project settings | ||
.spyderproject | ||
.spyproject | ||
.ropeproject | ||
|
||
# datajoint, notes, nwb export | ||
# DataJoint files | ||
dj_local_c*.json | ||
temp* | ||
*nwb | ||
dj_remote_c*.json | ||
.datajoint_config.json | ||
|
||
# Misc files/folders | ||
pyproject.code-workspace | ||
scratch/* | ||
src/deangelis_lab/experimental/* | ||
.junk/* | ||
|
||
# mkdocs documentation | ||
docs/site | ||
# Secret keys | ||
*.ssh | ||
*.pem |