|
1 | | -# Byte-compiled / optimized / DLL files |
2 | | -__pycache__/ |
3 | | -*.py[cod] |
4 | | -*$py.class |
| 1 | +# Operating-system |
| 2 | +.DS_Store |
| 3 | +Thumbs.db |
5 | 4 |
|
6 | | -# C extensions |
7 | | -*.so |
| 5 | +# Editor / IDE settings |
| 6 | +.vscode/ |
| 7 | +!.vscode/launch.json |
| 8 | +.idea/ |
| 9 | +*.swp |
8 | 10 |
|
9 | | -# Distribution / packaging |
10 | | -.Python |
11 | | -build/ |
12 | | -develop-eggs/ |
13 | | -dist/ |
14 | | -downloads/ |
15 | | -eggs/ |
16 | | -.eggs/ |
17 | | -lib/ |
18 | | -lib64/ |
19 | | -parts/ |
20 | | -sdist/ |
21 | | -var/ |
22 | | -wheels/ |
23 | | -share/python-wheels/ |
| 11 | +# Python virtual-envs & tooling |
| 12 | +.venv*/ |
| 13 | +.python-version |
| 14 | +__pycache__/ |
24 | 15 | *.egg-info/ |
25 | | -.installed.cfg |
26 | 16 | *.egg |
27 | | -MANIFEST |
| 17 | +.ruff_cache/ |
28 | 18 |
|
29 | | -tmp/* |
30 | | - |
31 | | -# 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. |
34 | | -*.manifest |
35 | | -*.spec |
36 | | - |
37 | | -# Installer logs |
38 | | -pip-log.txt |
39 | | -pip-delete-this-directory.txt |
40 | | - |
41 | | -# Unit test / coverage reports |
42 | | -htmlcov/ |
43 | | -.tox/ |
44 | | -.nox/ |
| 19 | +# Test artifacts & coverage |
| 20 | +.pytest_cache/ |
45 | 21 | .coverage |
46 | | -.coverage.* |
47 | | -.cache |
48 | | -nosetests.xml |
49 | 22 | coverage.xml |
50 | | -*.cover |
51 | | -*.py,cover |
52 | | -.hypothesis/ |
53 | | -.pytest_cache/ |
54 | | -cover/ |
55 | | - |
56 | | -# Translations |
57 | | -*.mo |
58 | | -*.pot |
59 | | - |
60 | | -# Django stuff: |
61 | | -*.log |
62 | | -local_settings.py |
63 | | -db.sqlite3 |
64 | | -db.sqlite3-journal |
65 | | - |
66 | | -# Flask stuff: |
67 | | -instance/ |
68 | | -.webassets-cache |
69 | | - |
70 | | -# Scrapy stuff: |
71 | | -.scrapy |
72 | | - |
73 | | -# Sphinx documentation |
74 | | -docs/_build/ |
75 | | - |
76 | | -# PyBuilder |
77 | | -.pybuilder/ |
78 | | -target/ |
79 | | - |
80 | | -# Jupyter Notebook |
81 | | -.ipynb_checkpoints |
82 | | - |
83 | | -# IPython |
84 | | -profile_default/ |
85 | | -ipython_config.py |
86 | | - |
87 | | -# 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 |
91 | | - |
92 | | -# 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 |
98 | | - |
99 | | -# 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 |
105 | | - |
106 | | -# 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 |
112 | | -.pdm.toml |
113 | | -.pdm-python |
114 | | -.pdm-build/ |
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 |
120 | | -celerybeat-schedule |
121 | | -celerybeat.pid |
122 | | - |
123 | | -# SageMath parsed files |
124 | | -*.sage.py |
125 | | - |
126 | | -# Environments |
127 | | -.env |
128 | | -.venv |
129 | | -.venv* |
130 | | -env/ |
131 | | -venv/ |
132 | | -ENV/ |
133 | | -env.bak/ |
134 | | -venv.bak/ |
135 | | -.python-version |
136 | | - |
137 | | -# Spyder project settings |
138 | | -.spyderproject |
139 | | -.spyproject |
140 | | - |
141 | | -# Rope project settings |
142 | | -.ropeproject |
143 | | - |
144 | | -# mkdocs documentation |
145 | | -/site |
146 | | - |
147 | | -# mypy |
148 | | -.mypy_cache/ |
149 | | -.dmypy.json |
150 | | -dmypy.json |
151 | | - |
152 | | -# Pyre type checker |
153 | | -.pyre/ |
154 | | - |
155 | | -# pytype static type analyzer |
156 | | -.pytype/ |
| 23 | +htmlcov/ |
157 | 24 |
|
158 | | -# Cython debug symbols |
159 | | -cython_debug/ |
| 25 | +# Build, distribution & docs |
| 26 | +build/ |
| 27 | +dist/ |
| 28 | +*.wheel |
160 | 29 |
|
161 | | -# PyCharm |
162 | | -# JetBrains specific template is maintained in a separate JetBrains.gitignore that can |
163 | | -# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore |
164 | | -# and can be added to the global gitignore or merged into this file. For a more nuclear |
165 | | -# option (not recommended) you can uncomment the following to ignore the entire idea folder. |
166 | | -#.idea/ |
167 | | -.vscode/settings.json |
168 | | -.DS_Store |
169 | 30 |
|
170 | | -# JavaScript tooling |
171 | | -node_modules/ |
172 | 31 |
|
173 | | -# CSS |
174 | | -src/static/css/site.css |
| 32 | +# Logs & runtime output |
| 33 | +*.log |
| 34 | +logs/ |
| 35 | +*.tmp |
| 36 | +tmp/ |
175 | 37 |
|
176 | | -# Project specific |
| 38 | +# Project-specific files |
177 | 39 | history.txt |
178 | | -cleanup.py |
179 | | -Caddyfile |
180 | | - |
181 | | -# ignore default output directory |
182 | | -tmp/* |
183 | | - |
184 | | -# Gitingest |
185 | 40 | digest.txt |
0 commit comments