Upload 2 files
Browse files- .gitignore +13 -0
- requirements.txt +7 -0
.gitignore
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
__pycache__/
|
2 |
+
*.py[cod]
|
3 |
+
*$py.class
|
4 |
+
*.so
|
5 |
+
.env
|
6 |
+
.venv
|
7 |
+
env/
|
8 |
+
venv/
|
9 |
+
ENV/
|
10 |
+
.idea/
|
11 |
+
.vscode/
|
12 |
+
*.xlsx
|
13 |
+
!data/*.xlsx
|
requirements.txt
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
fastapi
|
2 |
+
uvicorn
|
3 |
+
pandas
|
4 |
+
matplotlib
|
5 |
+
mplsoccer
|
6 |
+
python-dotenv
|
7 |
+
openpyxl
|