-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (58 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
63 lines (58 loc) · 1.59 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
[project]
name = "rapidata"
version = "3.9.9"
description = "Rapidata package containing the Rapidata Python Client to interact with the Rapidata Web API in an easy way."
authors = [{ name = "Rapidata AG", email = "info@rapidata.ai" }]
requires-python = ">=3.10,<4"
readme = "README.md"
license = "Apache-2.0"
dependencies = [
"requests>=2.32.3,<3",
"pyjwt>=2.9.0,<3",
"pydantic>=2.8.2,<3",
"python-dateutil>=2.9.0.post0,<3",
"tqdm>=4.66.5,<5",
"deprecated>=1.2.14,<2",
"colorama==0.4.6",
"tinytag>=2.0.0,<3",
"pandas>=2.2.3,<3",
"authlib==1.6.5",
"httpx>=0.28.1,<0.29",
"packaging>=16.0.0",
"opentelemetry-api>=1.27.0",
"opentelemetry-sdk>=1.27.0",
"opentelemetry-exporter-otlp>=1.27.0",
"diskcache>=5.6.3,<6",
"hatchling>=1.28.0",
"qrcode>=8.0,<9",
]
[dependency-groups]
dev = [
"python-dotenv>=1.0.1,<2",
"black>=25.11.0",
"ipykernel>=7.1.0,<8",
"jupyter>=1.1.1,<2",
"pyright>=1.1.407",
]
docs = [
"mkdocs-material>=9.5.34,<10",
"mkdocstrings[python]>=1.0.0",
"mkdocs-autorefs>=1.2.0,<2",
"mkdocs-gen-files>=0.6.0",
"mkdocs-literate-nav>=0.6.1,<0.7",
"pygments>=2.18.0,<3",
"mkdocs-section-index>=0.3.9,<0.4",
"mike>=2.1.3,<3",
"mkdocs-redirects>=1.2.2,<2",
"mkdocs-glightbox>=0.4.0,<1",
"mkdocs-llmstxt-md>=0.1.0",
]
[tool.hatch.build.targets.sdist]
include = ["src/rapidata"]
[tool.hatch.build.targets.wheel]
include = ["src/rapidata"]
[tool.hatch.build.targets.wheel.sources]
"src/rapidata" = "rapidata"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"