Skip to content

Commit a373dc9

Browse files
authored
Merge pull request #88 from Alirezak2n/master
PyTorch version of DeepLC
2 parents 3a33fb1 + efabc32 commit a373dc9

11 files changed

+449
-124
lines changed

.gitignore

Lines changed: 86 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ __pycache__/
2424

2525
# Distribution / packaging
2626
.Python
27-
env/
2827
build/
2928
develop-eggs/
3029
dist/
@@ -37,6 +36,7 @@ parts/
3736
sdist/
3837
var/
3938
wheels/
39+
share/python-wheels/
4040
*.egg-info/
4141
.installed.cfg
4242
*.egg
@@ -55,13 +55,17 @@ pip-delete-this-directory.txt
5555
# Unit test / coverage reports
5656
htmlcov/
5757
.tox/
58+
.nox/
5859
.coverage
5960
.coverage.*
6061
.cache
6162
nosetests.xml
6263
coverage.xml
63-
*,cover
64+
*.cover
65+
*.py,cover
6466
.hypothesis/
67+
.pytest_cache/
68+
cover/
6569

6670
# Translations
6771
*.mo
@@ -70,6 +74,8 @@ coverage.xml
7074
# Django stuff:
7175
*.log
7276
local_settings.py
77+
db.sqlite3
78+
db.sqlite3-journal
7379

7480
# Flask stuff:
7581
instance/
@@ -82,32 +88,101 @@ instance/
8288
docs/_build/
8389

8490
# PyBuilder
91+
.pybuilder/
8592
target/
8693

8794
# Jupyter Notebook
8895
.ipynb_checkpoints
8996

97+
# IPython
98+
profile_default/
99+
ipython_config.py
100+
90101
# pyenv
91102
.python-version
92103

93-
# celery beat schedule file
104+
# pipenv
105+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
106+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
107+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
108+
# install all needed dependencies.
109+
#Pipfile.lock
110+
111+
# UV
112+
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
113+
# This is especially recommended for binary packages to ensure reproducibility, and is more
114+
# commonly ignored for libraries.
115+
#uv.lock
116+
117+
# poetry
118+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
119+
# This is especially recommended for binary packages to ensure reproducibility, and is more
120+
# commonly ignored for libraries.
121+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
122+
#poetry.lock
123+
124+
# pdm
125+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
126+
#pdm.lock
127+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
128+
# in version control.
129+
# https://pdm.fming.dev/latest/usage/project/#working-with-version-control
130+
.pdm.toml
131+
.pdm-python
132+
.pdm-build/
133+
134+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
135+
__pypackages__/
136+
137+
# Celery stuff
94138
celerybeat-schedule
139+
celerybeat.pid
95140

96-
# dotenv
97-
.env
141+
# SageMath parsed files
142+
*.sage.py
98143

99-
# virtualenv
100-
.venv/
144+
# Environments
145+
.env
146+
.venv
147+
env/
101148
venv/
102149
ENV/
150+
env.bak/
151+
venv.bak/
103152

104153
# Spyder project settings
105154
.spyderproject
155+
.spyproject
106156

107157
# Rope project settings
108158
.ropeproject
109159

110-
# vscode
111-
.vscode/
112-
.vs/
113-
© 2019 GitHub, Inc.
160+
# mkdocs documentation
161+
/site
162+
163+
# mypy
164+
.mypy_cache/
165+
.dmypy.json
166+
dmypy.json
167+
168+
# Pyre type checker
169+
.pyre/
170+
171+
# pytype static type analyzer
172+
.pytype/
173+
174+
# Cython debug symbols
175+
cython_debug/
176+
177+
# PyCharm
178+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
179+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
180+
# and can be added to the global gitignore or merged into this file. For a more nuclear
181+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
182+
#.idea/
183+
184+
# Ruff stuff:
185+
.ruff_cache/
186+
187+
# PyPI configuration file
188+
.pypirc

0 commit comments

Comments
 (0)