-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (34 loc) · 867 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[tool.poetry]
name = "worldender-ai"
version = "0.1.0"
description = "Text-adventure game about world ending events"
authors = ["James Dominguez <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "worldender"}]
[tool.poetry.dependencies]
python = "^3.12"
openai = "^1.33.0"
bs4 = "^0.0.2"
instructor = "^1.3.2"
pandas = "^2.2.2"
wandb = "^0.17.1"
asyncio = "^3.4.3"
tabulate = "^0.9.0"
pymongo = "^4.7.3"
[tool.poetry.group.dev.dependencies]
mkdocs-material = "^9.5.26"
ipykernel = "^6.29.4"
[tool.poetry.group.test.dependencies]
pytest = "^7.0.1"
[tool.poetry.group.api-server]
optional = true
[tool.poetry.group.api-server.dependencies]
python-dotenv = "^1.0.1"
fastapi = "^0.111.0"
motor = "^3.4.0"
pymongo = "^4.7.3"
fastapi-cors = "^0.0.6"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"