Spaces:
Running
Running
Samarth0710
commited on
Commit
·
5af9e98
1
Parent(s):
93a0737
Add to HF Spaces
Browse files- poetry.lock +0 -0
- pyproject.toml +24 -0
poetry.lock
ADDED
The diff for this file is too large to render.
See raw diff
|
|
pyproject.toml
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[tool.poetry]
|
2 |
+
name = "manimator"
|
3 |
+
version = "0.1.0"
|
4 |
+
description = "Transform research papers and mathematical concepts into stunning visual explanations (using the manim engine), powered by AI"
|
5 |
+
authors = ["Samarth P <[email protected]>", "Vyoman Jain <[email protected]>", "Shiva Golugula <[email protected]>", "Sai Sathvik <[email protected]>"]
|
6 |
+
license = "MIT"
|
7 |
+
readme = "README.md"
|
8 |
+
|
9 |
+
[tool.poetry.dependencies]
|
10 |
+
python = ">=3.11,<3.13"
|
11 |
+
fastapi = "^0.115.6"
|
12 |
+
uvicorn = "^0.34.0"
|
13 |
+
python-dotenv = "^1.0.1"
|
14 |
+
litellm = "^1.56.10"
|
15 |
+
python-multipart = "^0.0.20"
|
16 |
+
tenacity = "^9.0.0"
|
17 |
+
manim = "^0.18.1"
|
18 |
+
pypdf2 = "^3.0.1"
|
19 |
+
gradio = "^5.9.1"
|
20 |
+
|
21 |
+
|
22 |
+
[build-system]
|
23 |
+
requires = ["poetry-core"]
|
24 |
+
build-backend = "poetry.core.masonry.api"
|