-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
47 lines (42 loc) · 1009 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
41
42
43
44
45
46
47
[tool.poetry]
name = "ciare-world-creator"
version = "0.1.2"
description = ""
authors = ["Alex Karavaev <alexkaravaev@alexkaravaev.xyz>"]
readme = "README.md"
packages = [{include = "ciare_world_creator"}]
[tool.poetry.dependencies]
python = ">=3.8.1,<3.11"
openai = "^0.27.8"
lxml = "^4.9.2"
chromadb = "^0.3.26"
pandas = "^2.0.3"
questionary = "^1.10.0"
tqdm = "^4.65.0"
click = "^8.1.3"
tinydb = "^4.8.0"
langchain = "^0.0.222"
asyncio = "^3.4.3"
aiohttp = "^3.8.4"
tabulate = "^0.9.0"
lark = "^1.1.5"
pre-commit = "^3.3.3"
objaverse = "0.1.7"
aspose-words = "^24.3.0"
aspose-3d = "^24.2.0"
trimesh = "^4.2.0"
obj2mjcf = "^0.0.25"
[tool.poetry.dev-dependencies]
black = "*"
isort = "*"
pytest = "*"
[tool.black]
line-length = 88
target-version = ['py37', 'py38']
include = '\.pyi?$'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# Python-style entrypoints and scripts are easily expressed
[tool.poetry.scripts]
ciare_world_creator = "ciare_world_creator.cli:cli"