Skip to content

Commit e4e365f

Browse files
committed
v1.0.2
1 parent fcfe484 commit e4e365f

18 files changed

+523
-117
lines changed

.gitignore

Lines changed: 15 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
.env
22
.DS_Store
3+
34
# Byte-compiled / optimized / DLL files
45
__pycache__/
56
*.py[cod]
@@ -29,8 +30,6 @@ share/python-wheels/
2930
MANIFEST
3031

3132
# PyInstaller
32-
# Usually these files are written by a python script from a template
33-
# before PyInstaller builds the exe, so as to inject date/other infos into it.
3433
*.manifest
3534
*.spec
3635

@@ -57,17 +56,17 @@ cover/
5756
*.mo
5857
*.pot
5958

60-
# Django stuff:
59+
# Django stuff
6160
*.log
6261
local_settings.py
6362
db.sqlite3
6463
db.sqlite3-journal
6564

66-
# Flask stuff:
65+
# Flask stuff
6766
instance/
6867
.webassets-cache
6968

70-
# Scrapy stuff:
69+
# Scrapy stuff
7170
.scrapy
7271

7372
# Sphinx documentation
@@ -85,35 +84,20 @@ profile_default/
8584
ipython_config.py
8685

8786
# pyenv
88-
# For a library or package, you might want to ignore these files since the code is
89-
# intended to run in multiple environments; otherwise, check them in:
90-
# .python-version
87+
.python-version
9188

9289
# pipenv
93-
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
94-
# However, in case of collaboration, if having platform-specific dependencies or dependencies
95-
# having no cross-platform support, pipenv may install dependencies that don't work, or not
96-
# install all needed dependencies.
97-
#Pipfile.lock
90+
# Pipfile.lock
9891

9992
# poetry
100-
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
101-
# This is especially recommended for binary packages to ensure reproducibility, and is more
102-
# commonly ignored for libraries.
103-
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
104-
#poetry.lock
93+
# poetry.lock
10594

10695
# pdm
107-
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
108-
#pdm.lock
109-
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
110-
# in version control.
111-
# https://pdm.fming.dev/latest/usage/project/#working-with-version-control
11296
.pdm.toml
11397
.pdm-python
11498
.pdm-build/
11599

116-
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
100+
# PEP 582
117101
__pypackages__/
118102

119103
# Celery stuff
@@ -124,7 +108,6 @@ celerybeat.pid
124108
*.sage.py
125109

126110
# Environments
127-
.env
128111
.venv
129112
env/
130113
venv/
@@ -157,8 +140,10 @@ dmypy.json
157140
cython_debug/
158141

159142
# PyCharm
160-
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
161-
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
162-
# and can be added to the global gitignore or merged into this file. For a more nuclear
163-
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
164-
#.idea/
143+
# .idea/
144+
145+
# IDEs and editors
146+
.vscode/
147+
.idea/
148+
*.sublime-project
149+
*.sublime-workspace

0 commit comments

Comments
 (0)