-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
84 lines (71 loc) · 1.83 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[tool.poetry]
name = "cassarrow"
version = "0.0.0"
description = "Apache Arrow adapter for the Cassandra python driver"
authors = ["0x26res <0x26res@gamil.com>"]
maintainers = ["0x26res <0x26res@gmail.com>"]
packages = [
{ include = "cassarrow" },
]
include = [
{path = "cpp", format = "sdist"}
]
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/0x26res/cassarrow"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
keywords = ["apache-arrow", "data"]
[tool.poetry.dependencies]
cassandra-driver = ">=3.0.0"
pyarrow = ">=8.0.0"
python = ">=3.9,<4"
pybind11 = ">=2.10.1"
wheel = ">=0.37.0"
setuptools = "*"
[tool.poetry.dev-dependencies]
black = "*"
coverage = ">=6.5.0"
flake8 = ">=5.0.4"
isort = ">=5.10.1"
pre-commit = ">=2.20.0"
pylint = ">=2.15.0"
pytest = ">=7.2.0"
pytest-benchmark = ">=4.0.0"
pandas = ">=1.5.2"
numpy = ">=2.0.0"
[tool.poetry-dynamic-versioning]
enable = true
[tool.poetry-dynamic-versioning.substitution]
files = ["*/__init__.py", "build.py"]
folders = [ {path = "cassarrow"}]
[tool.poetry.build]
script = "build.py"
[build-system]
requires = [
"setuptools>=42",
"wheel",
"build",
"pybind11>=2.9.0",
"pyarrow>=7.0.0",
"poetry-dynamic-versioning",
"poetry-core>=1.0.0"
]
build-backend = "poetry_dynamic_versioning.backend"
[tool.isort]
profile = "black"
known_first_party = ["_cassarrow", "cassarrow", "tests"]
skip = [".gitignore"]
src_paths = ["isort", "test"]
[tool.black]
target-version = ['py39']
[mypy]
python_version = 3.10