soumi guria commited on
Commit ·
f6ce850
1
Parent(s): 52c4cb9
added pyproject.toml file
Browse files- pyproject.toml +18 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[build-system]
|
| 2 |
+
requires = ["setuptools>=61.0"]
|
| 3 |
+
build-backend = "setuptools.build_meta"
|
| 4 |
+
|
| 5 |
+
[project]
|
| 6 |
+
name = "cognitive-load-manager"
|
| 7 |
+
version = "0.1.0"
|
| 8 |
+
description = "Cognitive Load Manager Environment implementation"
|
| 9 |
+
readme = "README.md"
|
| 10 |
+
requires-python = ">=3.9"
|
| 11 |
+
dependencies = [
|
| 12 |
+
"fastapi",
|
| 13 |
+
"uvicorn",
|
| 14 |
+
"pydantic",
|
| 15 |
+
"openai",
|
| 16 |
+
"requests",
|
| 17 |
+
"python-dotenv"
|
| 18 |
+
]
|