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