Skip to content

Commit 3651e56

Browse files
committed
Add deps and metadata
1 parent 876ecc8 commit 3651e56

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

pyproject.toml

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,20 @@
22
requires = ["hatchling >= 1.26"]
33
build-backend = "hatchling.build"
44

5+
[tool.hatch.build.targets.wheel]
6+
packages = ["src/crate"]
7+
8+
[tool.hatch.version]
9+
path = "src/crate/client/__init__.py"
10+
511
[project]
612
name = "crate-python"
713
dynamic = ["version"]
814
description = "CrateDB Python Client"
915
authors = [{ name = "Crate.io", email = "[email protected]" }]
1016
requires-python = ">=3.10"
11-
readme = "README.md"
12-
license = { file = "LICENSE.md"}
17+
readme = "README.rst"
18+
license = { file = "LICENSE"}
1319
classifiers = [
1420
"Development Status :: 5 - Production/Stable",
1521
"Intended Audience :: Developers",
@@ -26,11 +32,18 @@ classifiers = [
2632
"Topic :: Database",
2733
]
2834
dependencies = [
29-
35+
"orjson>=3.11.3",
36+
"urllib3>=2.5.0",
3037
]
3138

3239
[dependency-groups]
3340
dev = [
41+
"certifi>=2025.10.5",
42+
"pytest>=8.4.2",
43+
"pytz>=2025.2",
44+
"setuptools>=80.9.0",
45+
"stopit>=1.1.2",
46+
"verlib2>=0.3.1",
3447
]
3548

3649

0 commit comments

Comments
 (0)