Create pyproject.toml
Browse files- pyproject.toml +33 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[build-system]
|
| 2 |
+
requires = ["setuptools>=61.0"]
|
| 3 |
+
build-backend = "setuptools.build_meta"
|
| 4 |
+
|
| 5 |
+
[project]
|
| 6 |
+
name = "gampa"
|
| 7 |
+
version = "0.1.0"
|
| 8 |
+
description = "MatheBot AI"
|
| 9 |
+
authors = [
|
| 10 |
+
{ name = "Henry Asiedu", email = "henry.asiedu@gmail.com" }
|
| 11 |
+
]
|
| 12 |
+
readme = "README.md"
|
| 13 |
+
requires-python = ">=3.9"
|
| 14 |
+
maintainers = [
|
| 15 |
+
{ name = "Henry Asiedu", email = "henry.asiedu@gmail.com" }
|
| 16 |
+
]
|
| 17 |
+
|
| 18 |
+
dependencies = [
|
| 19 |
+
"sympy",
|
| 20 |
+
"gradio",
|
| 21 |
+
"llama-index-core==0.13.3",
|
| 22 |
+
"llama-index-llms-mistralai==0.7.1",
|
| 23 |
+
"llama-index-embeddings-mistralai"
|
| 24 |
+
]
|
| 25 |
+
|
| 26 |
+
[project.optional-dependencies]
|
| 27 |
+
dev = [
|
| 28 |
+
"gradio"
|
| 29 |
+
]
|
| 30 |
+
|
| 31 |
+
[tool.setuptools]
|
| 32 |
+
|
| 33 |
+
packages = ["gampa"]
|