Gitignore venv & small refactor

This commit is contained in:
Simon Alibert 2024-05-23 14:07:55 +02:00
parent d23b31e2a9
commit d89f20b550
1 changed files with 23 additions and 9 deletions

32
.gitignore vendored
View File

@ -2,12 +2,17 @@
logs logs
tmp tmp
wandb wandb
# Data
data data
outputs outputs
.vscode
rl # Apple
.DS_Store .DS_Store
# VS Code
.vscode
# HPC # HPC
nautilus/*.yaml nautilus/*.yaml
*.key *.key
@ -90,6 +95,7 @@ instance/
docs/_build/ docs/_build/
# PyBuilder # PyBuilder
.pybuilder/
target/ target/
# Jupyter Notebook # Jupyter Notebook
@ -102,13 +108,6 @@ ipython_config.py
# pyenv # pyenv
.python-version .python-version
# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock
# PEP 582; used by e.g. github.com/David-OConnor/pyflow # PEP 582; used by e.g. github.com/David-OConnor/pyflow
__pypackages__/ __pypackages__/
@ -119,6 +118,15 @@ celerybeat.pid
# SageMath parsed files # SageMath parsed files
*.sage.py *.sage.py
# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# Spyder project settings # Spyder project settings
.spyderproject .spyderproject
.spyproject .spyproject
@ -136,3 +144,9 @@ dmypy.json
# Pyre type checker # Pyre type checker
.pyre/ .pyre/
# pytype static type analyzer
.pytype/
# Cython debug symbols
cython_debug/