|
1 | | -# Byte-compiled / optimized / DLL files |
| 1 | +# byte-compiled / optimized / DLL files |
2 | 2 | __pycache__/ |
3 | 3 | *.py[cod] |
4 | 4 | *$py.class |
5 | 5 |
|
6 | 6 | # C extensions |
7 | 7 | *.so |
8 | 8 |
|
9 | | -# Distribution / packaging |
| 9 | +# Celery |
| 10 | +celerybeat-schedule |
| 11 | +celerybeat.pid |
| 12 | + |
| 13 | +# Cython debug symbols |
| 14 | +cython_debug/ |
| 15 | + |
| 16 | +# distribution / packaging |
| 17 | +.eggs/ |
| 18 | +.installed.cfg |
10 | 19 | .Python |
| 20 | +*.egg |
| 21 | +*.egg-info/ |
11 | 22 | build/ |
12 | 23 | develop-eggs/ |
13 | 24 | dist/ |
14 | 25 | downloads/ |
15 | 26 | eggs/ |
16 | | -.eggs/ |
17 | 27 | lib/ |
18 | 28 | lib64/ |
| 29 | +MANIFEST |
19 | 30 | parts/ |
20 | 31 | sdist/ |
| 32 | +share/python-wheels/ |
21 | 33 | var/ |
22 | 34 | wheels/ |
23 | | -share/python-wheels/ |
24 | | -*.egg-info/ |
25 | | -.installed.cfg |
26 | | -*.egg |
27 | | -MANIFEST |
28 | | - |
29 | | -# PyInstaller |
30 | | -# Usually these files are written by a python script from a template |
31 | | -# before PyInstaller builds the exe, so as to inject date/other infos into it. |
32 | | -*.manifest |
33 | | -*.spec |
34 | | - |
35 | | -# Installer logs |
36 | | -pip-log.txt |
37 | | -pip-delete-this-directory.txt |
38 | | - |
39 | | -# Unit test / coverage reports |
40 | | -htmlcov/ |
41 | | -.tox/ |
42 | | -.nox/ |
43 | | -.coverage |
44 | | -.coverage.* |
45 | | -.cache |
46 | | -nosetests.xml |
47 | | -coverage.xml |
48 | | -*.cover |
49 | | -*.py,cover |
50 | | -.hypothesis/ |
51 | | -.pytest_cache/ |
52 | | -cover/ |
53 | | - |
54 | | -# Translations |
55 | | -*.mo |
56 | | -*.pot |
57 | 35 |
|
58 | | -# Django stuff: |
| 36 | +# Django |
59 | 37 | *.log |
60 | | -local_settings.py |
61 | 38 | db.sqlite3 |
62 | 39 | db.sqlite3-journal |
| 40 | +local_settings.py |
63 | 41 |
|
64 | | -# Flask stuff: |
65 | | -instance/ |
66 | | -.webassets-cache |
| 42 | +# environments |
| 43 | +.env |
| 44 | +.venv |
| 45 | +env.bak/ |
| 46 | +env/ |
| 47 | +ENV/ |
| 48 | +venv.bak/ |
| 49 | +venv/ |
67 | 50 |
|
68 | | -# Scrapy stuff: |
69 | | -.scrapy |
| 51 | +# Flask |
| 52 | +.webassets-cache |
| 53 | +instance/ |
70 | 54 |
|
71 | | -# Sphinx documentation |
72 | | -docs/_build/ |
| 55 | +# IDEs |
| 56 | +.idea/ |
| 57 | +.vscode/ |
73 | 58 |
|
74 | | -# PyBuilder |
75 | | -.pybuilder/ |
76 | | -target/ |
| 59 | +# IPython |
| 60 | +ipython_config.py |
| 61 | +profile_default/ |
77 | 62 |
|
78 | | -# Jupyter Notebook |
| 63 | +# Jupyter |
79 | 64 | .ipynb_checkpoints |
80 | 65 |
|
81 | | -# IPython |
82 | | -profile_default/ |
83 | | -ipython_config.py |
| 66 | +# logging |
| 67 | +pip-delete-this-directory.txt |
| 68 | +pip-log.txt |
84 | 69 |
|
85 | | -# 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 | | -# UV |
98 | | -# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control. |
99 | | -# This is especially recommended for binary packages to ensure reproducibility, and is more |
100 | | -# commonly ignored for libraries. |
101 | | -#uv.lock |
102 | | - |
103 | | -# poetry |
104 | | -# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. |
105 | | -# This is especially recommended for binary packages to ensure reproducibility, and is more |
106 | | -# commonly ignored for libraries. |
107 | | -# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control |
108 | | -#poetry.lock |
| 70 | +# macOS system files |
| 71 | +.DS_Store |
| 72 | + |
| 73 | +# mkdocs documentation |
| 74 | +/site |
109 | 75 |
|
110 | 76 | # pdm |
111 | | -# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. |
112 | | -#pdm.lock |
113 | | -# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it |
114 | | -# in version control. |
| 77 | +# pdm stores project-wide configurations in .pdm.toml, |
| 78 | +# but it is recommended to not include it in version control. |
115 | 79 | # https://pdm.fming.dev/latest/usage/project/#working-with-version-control |
116 | | -.pdm.toml |
117 | | -.pdm-python |
118 | 80 | .pdm-build/ |
| 81 | +.pdm-python |
| 82 | +.pdm.toml |
119 | 83 |
|
120 | 84 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm |
121 | 85 | __pypackages__/ |
122 | 86 |
|
123 | | -# Celery stuff |
124 | | -celerybeat-schedule |
125 | | -celerybeat.pid |
| 87 | +# PyBuilder |
| 88 | +.pybuilder/ |
| 89 | +target/ |
| 90 | + |
| 91 | +# PyInstaller |
| 92 | +*.manifest |
| 93 | +*.spec |
| 94 | + |
| 95 | +# PyPI configuration file |
| 96 | +.pypirc |
| 97 | + |
| 98 | +# Rope settings |
| 99 | +.ropeproject |
126 | 100 |
|
127 | 101 | # SageMath parsed files |
128 | 102 | *.sage.py |
129 | 103 |
|
130 | | -# Environments |
131 | | -.env |
132 | | -.venv |
133 | | -env/ |
134 | | -venv/ |
135 | | -ENV/ |
136 | | -env.bak/ |
137 | | -venv.bak/ |
| 104 | +# Scrapy |
| 105 | +.scrapy |
| 106 | + |
| 107 | +# Sphinx documentation |
| 108 | +docs/_build/ |
138 | 109 |
|
139 | | -# Spyder project settings |
| 110 | +# Spyder settings |
140 | 111 | .spyderproject |
141 | 112 | .spyproject |
142 | 113 |
|
143 | | -# Rope project settings |
144 | | -.ropeproject |
145 | | - |
146 | | -# mkdocs documentation |
147 | | -/site |
148 | | - |
149 | | -# mypy |
150 | | -.mypy_cache/ |
| 114 | +# static analysis |
151 | 115 | .dmypy.json |
152 | | -dmypy.json |
153 | | - |
154 | | -# Pyre type checker |
| 116 | +.mypy_cache/ |
155 | 117 | .pyre/ |
156 | | - |
157 | | -# pytype static type analyzer |
158 | 118 | .pytype/ |
| 119 | +dmypy.json |
159 | 120 |
|
160 | | -# Cython debug symbols |
161 | | -cython_debug/ |
162 | | - |
163 | | -# PyCharm |
164 | | -# JetBrains specific template is maintained in a separate JetBrains.gitignore that can |
165 | | -# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore |
166 | | -# and can be added to the global gitignore or merged into this file. For a more nuclear |
167 | | -# option (not recommended) you can uncomment the following to ignore the entire idea folder. |
168 | | -#.idea/ |
| 121 | +# testing |
| 122 | +.cache |
| 123 | +.coverage |
| 124 | +.coverage.* |
| 125 | +.hypothesis/ |
| 126 | +.nox/ |
| 127 | +.pytest_cache/ |
| 128 | +.tox/ |
| 129 | +*.cover |
| 130 | +*.py,cover |
| 131 | +cover/ |
| 132 | +coverage.xml |
| 133 | +htmlcov/ |
| 134 | +nosetests.xml |
169 | 135 |
|
170 | | -# PyPI configuration file |
171 | | -.pypirc |
| 136 | +# translations |
| 137 | +*.mo |
| 138 | +*.pot |
0 commit comments