-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
44 lines (38 loc) · 1.04 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
[tool.poetry]
name = "wherobots-python-dbapi"
version = "0.10.1"
description = "Python DB-API driver for Wherobots DB"
authors = ["Maxime Petazzoni <[email protected]>"]
license = "Apache 2.0"
readme = "README.md"
packages = [{ include = "wherobots" }]
[project.urls]
Homepage = "https://github.com/wherobots/wherobots-python-dbapi-driver"
Tracker = "https://github.com/wherobots/wherobots-python-dbapi-driver/issues"
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.31.0"
websockets = "13.0"
tenacity = "^8.2.3"
pyarrow = "^14.0.2"
cbor2 = "^5.6.3"
pandas = "^2.0"
StrEnum = "^0.4.15"
# pyarrow 14.0.2 doesn't limit numpy < 2, but it should, we do it here
numpy = "<2"
[tool.poetry.group.dev.dependencies]
mypy = "^1.8.0"
pytest = "^8.0.2"
black = "^24.2.0"
pre-commit = ">=3.5, <3.8.0"
conventional-pre-commit = "^3.1.0"
types-requests = "^2.32.0.20241016"
rich = "^13.7.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pylint.format]
max-line-length = "88"
[tool.mypy]
strict = true
show_error_codes = true