Skip to content

Commit eb693c4

Browse files
committedFeb 16, 2024
Update .gitignore
1 parent da1e69c commit eb693c4

File tree

1 file changed

+90
-91
lines changed

1 file changed

+90
-91
lines changed
 

‎.gitignore

+90-91
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# Created by https://www.gitignore.io/api/python,pycharm,osx
1+
# Created by https://www.toptal.com/developers/gitignore/api/python
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=python
23

34
### Python ###
45
# Byte-compiled / optimized / DLL files
@@ -11,7 +12,6 @@ __pycache__/
1112

1213
# Distribution / packaging
1314
.Python
14-
env/
1515
build/
1616
develop-eggs/
1717
dist/
@@ -24,9 +24,11 @@ parts/
2424
sdist/
2525
var/
2626
wheels/
27+
share/python-wheels/
2728
*.egg-info/
2829
.installed.cfg
2930
*.egg
31+
MANIFEST
3032

3133
# PyInstaller
3234
# Usually these files are written by a python script from a template
@@ -41,13 +43,17 @@ pip-delete-this-directory.txt
4143
# Unit test / coverage reports
4244
htmlcov/
4345
.tox/
46+
.nox/
4447
.coverage
4548
.coverage.*
4649
.cache
4750
nosetests.xml
4851
coverage.xml
49-
*,cover
52+
*.cover
53+
*.py,cover
5054
.hypothesis/
55+
.pytest_cache/
56+
cover/
5157

5258
# Translations
5359
*.mo
@@ -56,6 +62,8 @@ coverage.xml
5662
# Django stuff:
5763
*.log
5864
local_settings.py
65+
db.sqlite3
66+
db.sqlite3-journal
5967

6068
# Flask stuff:
6169
instance/
@@ -68,110 +76,101 @@ instance/
6876
docs/_build/
6977

7078
# PyBuilder
79+
.pybuilder/
7180
target/
7281

7382
# Jupyter Notebook
7483
.ipynb_checkpoints
7584

76-
# pyenv
77-
.python-version
85+
# IPython
86+
profile_default/
87+
ipython_config.py
7888

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

82-
# dotenv
83-
.env
123+
# SageMath parsed files
124+
*.sage.py
84125

85-
# virtualenv
86-
.venv/
126+
# Environments
127+
.env
128+
.venv
129+
env/
87130
venv/
88131
ENV/
132+
env.bak/
133+
venv.bak/
89134

90135
# Spyder project settings
91136
.spyderproject
137+
.spyproject
92138

93139
# Rope project settings
94140
.ropeproject
95141

142+
# mkdocs documentation
143+
/site
144+
145+
# mypy
146+
.mypy_cache/
147+
.dmypy.json
148+
dmypy.json
149+
150+
# Pyre type checker
151+
.pyre/
152+
153+
# pytype static type analyzer
154+
.pytype/
155+
156+
# Cython debug symbols
157+
cython_debug/
158+
159+
# 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/
165+
166+
### Python Patch ###
167+
# Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
168+
poetry.toml
169+
170+
# ruff
171+
.ruff_cache/
172+
173+
# LSP config files
174+
pyrightconfig.json
96175

97-
### PyCharm ###
98-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
99-
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
100-
101-
# User-specific stuff:
102-
.idea/workspace.xml
103-
.idea/tasks.xml
104-
105-
# Sensitive or high-churn files:
106-
.idea/dataSources/
107-
.idea/dataSources.ids
108-
.idea/dataSources.xml
109-
.idea/dataSources.local.xml
110-
.idea/sqlDataSources.xml
111-
.idea/dynamic.xml
112-
.idea/uiDesigner.xml
113-
114-
# Gradle:
115-
.idea/gradle.xml
116-
.idea/libraries
117-
118-
# Mongo Explorer plugin:
119-
.idea/mongoSettings.xml
120-
121-
## File-based project format:
122-
*.iws
123-
124-
## Plugin-specific files:
125-
126-
# IntelliJ
127-
/out/
128-
129-
# mpeltonen/sbt-idea plugin
130-
.idea_modules/
131-
132-
# JIRA plugin
133-
atlassian-ide-plugin.xml
134-
135-
# Crashlytics plugin (for Android Studio and IntelliJ)
136-
com_crashlytics_export_strings.xml
137-
crashlytics.properties
138-
crashlytics-build.properties
139-
fabric.properties
140-
141-
### PyCharm Patch ###
142-
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
143-
144-
# *.iml
145-
# modules.xml
146-
# .idea/misc.xml
147-
# *.ipr
148-
149-
150-
### OSX ###
151-
*.DS_Store
152-
.AppleDouble
153-
.LSOverride
154-
155-
# Icon must end with two \r
156-
Icon
157-
# Thumbnails
158-
._*
159-
# Files that might appear in the root of a volume
160-
.DocumentRevisions-V100
161-
.fseventsd
162-
.Spotlight-V100
163-
.TemporaryItems
164-
.Trashes
165-
.VolumeIcon.icns
166-
.com.apple.timemachine.donotpresent
167-
# Directories potentially created on remote AFP share
168-
.AppleDB
169-
.AppleDesktop
170-
Network Trash Folder
171-
Temporary Items
172-
.apdisk
173-
174-
# End of https://www.gitignore.io/api/python,pycharm,osx
175-
176-
### pawelad ###
177-
/.idea
176+
# End of https://www.toptal.com/developers/gitignore/api/python

0 commit comments

Comments
 (0)
Please sign in to comment.