-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (34 loc) · 997 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
[tool.poetry]
name = "rapidata"
version = "2.4.0"
description = "Rapidata package containing the Rapidata Python Client to interact with the Rapidata Web API in an easy way."
authors = ["Rapidata AG <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
packages = [{ include = "rapidata", from = "src" }]
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.32.3"
pyjwt = "^2.9.0"
pillow = "^10.4.0"
pydantic = "^2.8.2"
python-dateutil = "^2.9.0.post0"
tqdm = "^4.66.5"
deprecated = "^1.2.14"
colorama = "0.4.6"
tinytag = "^2.0.0"
[tool.poetry.group.dev.dependencies]
python-dotenv = "^1.0.1"
black = "^24.8.0"
[tool.poetry.group.docs.dependencies]
mkdocs-material = "^9.5.34"
mkdocstrings = { extras = ["python"], version = "^0.26.0" }
mkdocs-autorefs = "^1.2.0"
mkdocs-gen-files = "^0.5.0"
mkdocs-literate-nav = "^0.6.1"
pygments = "^2.18.0"
mkdocs-section-index = "^0.3.9"
mike = "^2.1.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"