Skip to content

Commit e231b0a

Browse files
Launch Commit
0 parents  commit e231b0a

29 files changed

+2194
-0
lines changed

.gitignore

Lines changed: 133 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
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+
*.egg-info/
23+
.installed.cfg
24+
*.egg
25+
MANIFEST
26+
27+
# PyInstaller
28+
*.manifest
29+
*.spec
30+
31+
# Installer logs
32+
pip-log.txt
33+
pip-delete-this-directory.txt
34+
35+
# Unit test / coverage reports
36+
htmlcov/
37+
.tox/
38+
.nox/
39+
.coverage
40+
.coverage.*
41+
.cache
42+
nosetests.xml
43+
coverage.xml
44+
*.cover
45+
.hypothesis/
46+
.pytest_cache/
47+
48+
# Translations
49+
*.mo
50+
*.pot
51+
52+
# Django stuff:
53+
*.log
54+
local_settings.py
55+
db.sqlite3
56+
57+
# Flask stuff:
58+
instance/
59+
.webassets-cache
60+
61+
# Scrapy stuff:
62+
.scrapy
63+
64+
# Sphinx documentation
65+
docs/_build/
66+
67+
# PyBuilder
68+
target/
69+
70+
# Jupyter Notebook
71+
.ipynb_checkpoints
72+
73+
# IPython
74+
profile_default/
75+
ipython_config.py
76+
77+
# pyenv
78+
.python-version
79+
80+
# pipenv
81+
Pipfile.lock
82+
83+
# poetry
84+
poetry.lock
85+
86+
# PEP 582
87+
__pypackages__/
88+
89+
# Celery
90+
celerybeat-schedule
91+
celerybeat.pid
92+
93+
# SageMath
94+
*.sage.py
95+
96+
# Environments
97+
.env
98+
.venv
99+
env/
100+
venv/
101+
ENV/
102+
env.bak/
103+
venv.bak/
104+
105+
# Spyder
106+
.spyderproject
107+
.spyproject
108+
109+
# Rope
110+
.ropeproject
111+
112+
# mkdocs
113+
/site
114+
115+
# mypy
116+
.mypy_cache/
117+
.dmypy.json
118+
dmypy.json
119+
120+
# Pyre
121+
.pyre/
122+
123+
# pytype
124+
.pytype/
125+
126+
# Cython
127+
cython_debug/
128+
129+
# VS Code
130+
.vscode/
131+
132+
# Allure reports
133+
allure-results

0 commit comments

Comments
 (0)