Spaces:
Sleeping
Sleeping
RobertoBarrosoLuque
commited on
Commit
·
0a18055
1
Parent(s):
5d8e07e
Move dependencies to requirements.txt
Browse files- pyproject.toml +4 -14
- requirements.txt +12 -0
pyproject.toml
CHANGED
|
@@ -4,20 +4,10 @@ version = "0.1.0"
|
|
| 4 |
description = "An end-to-end car crash claim AI assistant powered by FireworksAI"
|
| 5 |
readme = "README.md"
|
| 6 |
requires-python = ">=3.11"
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
"pre-commit",
|
| 12 |
-
"soundfile",
|
| 13 |
-
"scipy>=1.11.0",
|
| 14 |
-
"websocket-client",
|
| 15 |
-
"torchaudio",
|
| 16 |
-
"reportlab",
|
| 17 |
-
"python-dotenv",
|
| 18 |
-
"jupyter",
|
| 19 |
-
"ipython",
|
| 20 |
-
]
|
| 21 |
|
| 22 |
[tool.setuptools.packages.find]
|
| 23 |
where = ["src"]
|
|
|
|
| 4 |
description = "An end-to-end car crash claim AI assistant powered by FireworksAI"
|
| 5 |
readme = "README.md"
|
| 6 |
requires-python = ">=3.11"
|
| 7 |
+
dynamic = ["dependencies"]
|
| 8 |
+
|
| 9 |
+
[tool.setuptools.dynamic]
|
| 10 |
+
dependencies = {file = ["requirements.txt"]}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
|
| 12 |
[tool.setuptools.packages.find]
|
| 13 |
where = ["src"]
|
requirements.txt
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
gradio
|
| 2 |
+
huggingface_hub[cli]
|
| 3 |
+
fireworks-ai
|
| 4 |
+
pre-commit
|
| 5 |
+
soundfile
|
| 6 |
+
scipy>=1.11.0
|
| 7 |
+
websocket-client
|
| 8 |
+
torchaudio
|
| 9 |
+
reportlab
|
| 10 |
+
python-dotenv
|
| 11 |
+
jupyter
|
| 12 |
+
ipython
|