vietexob commited on
Commit
9b09229
·
1 Parent(s): acb78f8

Added .gitignore

Browse files
Files changed (1) hide show
  1. .gitignore +171 -0
.gitignore ADDED
@@ -0,0 +1,171 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[codz]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
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/
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
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ .pybuilder/
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+
81
+ # IPython
82
+ profile_default/
83
+ ipython_config.py
84
+
85
+ # pdm
86
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
87
+ # pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
88
+ # https://pdm-project.org/en/latest/usage/project/#working-with-version-control
89
+ #pdm.lock
90
+ #pdm.toml
91
+ .pdm-python
92
+ .pdm-build/
93
+
94
+ # pixi
95
+ # Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
96
+ #pixi.lock
97
+ # Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
98
+ # in the .venv directory. It is recommended not to include this directory in version control.
99
+ .pixi
100
+
101
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
102
+ __pypackages__/
103
+
104
+ # Celery stuff
105
+ celerybeat-schedule
106
+ celerybeat.pid
107
+
108
+ # SageMath parsed files
109
+ *.sage.py
110
+
111
+ # Environments
112
+ .env
113
+ .envrc
114
+ .venv
115
+ env/
116
+ venv/
117
+ ENV/
118
+ env.bak/
119
+ venv.bak/
120
+
121
+ # Spyder project settings
122
+ .spyderproject
123
+ .spyproject
124
+
125
+ # Rope project settings
126
+ .ropeproject
127
+
128
+ # mkdocs documentation
129
+ /site
130
+
131
+ # mypy
132
+ .mypy_cache/
133
+ .dmypy.json
134
+ dmypy.json
135
+
136
+ # Pyre type checker
137
+ .pyre/
138
+
139
+ # pytype static type analyzer
140
+ .pytype/
141
+
142
+ # Cython debug symbols
143
+ cython_debug/
144
+
145
+ # Abstra
146
+ # Abstra is an AI-powered process automation framework.
147
+ # Ignore directories containing user credentials, local state, and settings.
148
+ # Learn more at https://abstra.io/docs
149
+ .abstra/
150
+
151
+ # Ruff stuff:
152
+ .ruff_cache/
153
+
154
+ # PyPI configuration file
155
+ .pypirc
156
+
157
+ # Cursor
158
+ # Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
159
+ # exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
160
+ # refer to https://docs.cursor.com/context/ignore-files
161
+ .cursorignore
162
+ .cursorindexingignore
163
+
164
+ # Marimo
165
+ marimo/_static/
166
+ marimo/_lsp/
167
+ __marimo__/
168
+
169
+ .DS_Store
170
+ *.pdf
171
+ cache/