forked from wherobots/wherobots-python-dbapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (46 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
54 lines (46 loc) · 1.16 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
[project]
name = "wherobots-python-dbapi"
version = "0.21.0"
description = "Python DB-API driver for Wherobots DB"
authors = [{ name = "Maxime Petazzoni", email = "max@wherobots.com" }]
requires-python = ">=3.8, <4"
readme = "README.md"
license = "Apache-2.0"
dependencies = [
"packaging",
"requests>=2.31.0",
"websockets>=13.0",
"tenacity>=8.2.3",
"cbor2>=5.6.3",
"StrEnum>=0.4.15,<0.5",
"pyarrow>=14.0.2",
"pandas",
"types-requests>=2.32.0.20241016",
"pandas-stubs>=2.0.3.230814",
]
[project.optional-dependencies]
test = ["pytest>=8.0.2"]
[project.urls]
Homepage = "https://github.com/wherobots/wherobots-python-dbapi-driver"
Tracker = "https://github.com/wherobots/wherobots-python-dbapi-driver/issues"
[dependency-groups]
dev = [
"pre-commit",
"pytest>=8.0.2",
"pyarrow>=14.0.2",
"pandas",
"rich>=13.7.1",
"mypy>=1.14.1",
]
[tool.hatch.build.targets.sdist]
include = ["wherobots"]
[tool.hatch.build.targets.wheel]
include = ["wherobots"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pylint.format]
max-line-length = "88"
[tool.mypy]
strict = true
show_error_codes = true