-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.12 KB
/
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
48
49
50
51
[tool.poetry]
name = "invertedai"
version = "0.0.19.post1"
description = "Client SDK for InvertedAI"
authors = ["Inverted AI <info@inverted.ai>"]
readme = "README.md"
license = "MIT"
packages = [
{ include = "invertedai" },
]
[tool.poetry.dependencies]
python = ">=3.8,<=3.12"
requests = "^2.28.1"
pydantic = "^2.5.3"
matplotlib = "^3.6.2"
tqdm = "^4.65.0"
numpy = "^1.24.4"
[tool.poetry.group.dev.dependencies]
ipython = "^7.34"
ipywidgets = "^8.0.2"
carla = "^0.9.13"
jupyterlab = "^3.3"
twine = "^4.0.1"
shapely = "^2.0.1"
[tool.poetry.group.docs.dependencies]
Sphinx = "^5.2.3"
myst-parser = "^0.18.1"
furo = "^2022.9.29"
sphinx-copybutton = "^0.5.0"
sphinx_design = "^0.3.0"
sphinxcontrib-applehelp = "^1.0.2"
sphinxcontrib-devhelp = "^1.0.2"
sphinxcontrib-htmlhelp = "^2.0.0"
sphinxcontrib-jsmath = "^1.0.1"
sphinxcontrib-qthelp = "^1.0.3"
sphinxcontrib-serializinghtml = "^1.1.5"
pydata-sphinx-theme = "^0.10.1"
sphinx-autobuild = "^2021.3.14"
nbsphinx = "^0.8.9"
breathe = "^4.34.0"
[tool.poetry.group.tests.dependencies]
pytest = "^7.2.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"