Skip to content

Commit 53707ed

Browse files
Marco SinhoreliMarco Sinhoreli
authored andcommitted
First commit
1 parent 140f57b commit 53707ed

50 files changed

Lines changed: 5384 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
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+
wheels/
23+
pip-wheel-metadata/
24+
share/python-wheels/
25+
*.egg-info/
26+
.installed.cfg
27+
*.egg
28+
MANIFEST
29+
30+
# Virtual environments
31+
.env
32+
.venv
33+
env/
34+
venv/
35+
ENV/
36+
37+
# Editors / IDEs
38+
.idea/
39+
.vscode/
40+
41+
# PyInstaller
42+
*.manifest
43+
*.spec
44+
45+
# Installer logs
46+
pip-log.txt
47+
pip-delete-this-directory.txt
48+
49+
# Unit test / coverage reports
50+
htmlcov/
51+
.tox/
52+
.nox/
53+
.coverage
54+
.coverage.*
55+
.cache
56+
nosetests.xml
57+
coverage.xml
58+
*.cover
59+
*.py,cover
60+
.hypothesis/
61+
.pytest_cache/
62+
.mypy_cache/
63+
.ruff_cache/
64+
65+
# Jupyter Notebook
66+
.ipynb_checkpoints
67+
68+
# pyenv
69+
.python-version
70+
71+
# celery
72+
celerybeat-schedule
73+
celerybeat.pid
74+
75+
# dotenv
76+
*.env
77+
*.env.*
78+
.env.local
79+
.env.*.local
80+
81+
# System files
82+
.DS_Store
83+
Thumbs.db
84+
85+
# Logs
86+
*.log
87+
88+
# Temporary files
89+
*~
90+
*.tmp
91+
*.swp
92+
*.swo
93+
94+
.ruff_cache/
95+
.pytest_cache/
96+
.mypy_cache/
97+
.coverage
98+
.coverage.*
99+
.cache
100+
.hypothesis/
101+
.tox/
102+
.nox/
103+
104+
*test*
105+

0 commit comments

Comments
 (0)