forked from adriangb/pgpq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (54 loc) · 1.42 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
[project]
name = "pgpq"
repository = "https://github.com/adriangb/pgpq"
description = "Arrow -> PostgreSQL encoder"
authors = [
{name = "Adrian Garcia Badaracco"}
]
license = { text = "MIT" }
homepage = "https://github.com/adriangb/pgpq"
documentation = "https://github.com/adriangb/pgpq/blob/workspaces/py/README.md"
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"pyarrow>=11",
"typing-extensions>=3; python_version < '3.8'",
]
requires-python = ">=3.7"
[project.optional-dependencies]
test = [
"pytest >=7.0.0",
"maturin >= 1.4.0",
"pre-commit>=2.16.0",
"testing.postgresql >= 1.3.0",
"psycopg[binary] >= 3.1.8",
"pyarrow >= 11.0.0",
]
bench = [
"jupyter >=1.0.0",
"requests",
"duckdb",
]
[project.urls]
homepage = "https://github.com/adriangb/pgpq"
documentation = "https://github.com/adriangb/pgpq/README.md"
repository = "https://github.com/adriangb/pgpq"
[build-system]
requires = ["maturin>=1,<2"]
build-backend = "maturin"
[tool.maturin]
sdist-include = ["Cargo.lock"]
strip = true
python-source = "python"
profile = "release"
module-name = "pgpq._pgpq"
bindings = 'pyo3'
features = ["pyo3/extension-module"]
[tool.isort]
profile = "black"