Skip to content

Commit 5789df3

Browse files
authored
Merge pull request #1 from ALFA-group/eh/init
Init
2 parents d8d0563 + 53069bb commit 5789df3

28 files changed

+3480
-67
lines changed

.gitignore

Lines changed: 9 additions & 65 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ __pycache__/
88

99
# Distribution / packaging
1010
.Python
11+
env/
1112
build/
1213
develop-eggs/
1314
dist/
@@ -20,11 +21,9 @@ parts/
2021
sdist/
2122
var/
2223
wheels/
23-
share/python-wheels/
2424
*.egg-info/
2525
.installed.cfg
2626
*.egg
27-
MANIFEST
2827

2928
# PyInstaller
3029
# Usually these files are written by a python script from a template
@@ -39,17 +38,13 @@ pip-delete-this-directory.txt
3938
# Unit test / coverage reports
4039
htmlcov/
4140
.tox/
42-
.nox/
4341
.coverage
4442
.coverage.*
4543
.cache
4644
nosetests.xml
4745
coverage.xml
4846
*.cover
49-
*.py,cover
5047
.hypothesis/
51-
.pytest_cache/
52-
cover/
5348

5449
# Translations
5550
*.mo
@@ -58,8 +53,6 @@ cover/
5853
# Django stuff:
5954
*.log
6055
local_settings.py
61-
db.sqlite3
62-
db.sqlite3-journal
6356

6457
# Flask stuff:
6558
instance/
@@ -72,61 +65,27 @@ instance/
7265
docs/_build/
7366

7467
# PyBuilder
75-
.pybuilder/
7668
target/
7769

7870
# Jupyter Notebook
7971
.ipynb_checkpoints
8072

81-
# IPython
82-
profile_default/
83-
ipython_config.py
84-
8573
# pyenv
86-
# For a library or package, you might want to ignore these files since the code is
87-
# intended to run in multiple environments; otherwise, check them in:
88-
# .python-version
89-
90-
# pipenv
91-
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92-
# However, in case of collaboration, if having platform-specific dependencies or dependencies
93-
# having no cross-platform support, pipenv may install dependencies that don't work, or not
94-
# install all needed dependencies.
95-
#Pipfile.lock
96-
97-
# poetry
98-
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
99-
# This is especially recommended for binary packages to ensure reproducibility, and is more
100-
# commonly ignored for libraries.
101-
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102-
#poetry.lock
103-
104-
# pdm
105-
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
106-
#pdm.lock
107-
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
108-
# in version control.
109-
# https://pdm.fming.dev/#use-with-ide
110-
.pdm.toml
111-
112-
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
113-
__pypackages__/
114-
115-
# Celery stuff
74+
.python-version
75+
76+
# celery beat schedule file
11677
celerybeat-schedule
117-
celerybeat.pid
11878

11979
# SageMath parsed files
12080
*.sage.py
12181

122-
# Environments
82+
# dotenv
12383
.env
84+
85+
# virtualenv
12486
.venv
125-
env/
12687
venv/
12788
ENV/
128-
env.bak/
129-
venv.bak/
13089

13190
# Spyder project settings
13291
.spyderproject
@@ -140,21 +99,6 @@ venv.bak/
14099

141100
# mypy
142101
.mypy_cache/
143-
.dmypy.json
144-
dmypy.json
145-
146-
# Pyre type checker
147-
.pyre/
148-
149-
# pytype static type analyzer
150-
.pytype/
151-
152-
# Cython debug symbols
153-
cython_debug/
154102

155-
# PyCharm
156-
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
157-
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
158-
# and can be added to the global gitignore or merged into this file. For a more nuclear
159-
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
160-
#.idea/
103+
# Emacs
104+
*~

0 commit comments

Comments
 (0)