-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 1.19 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
[build-system]
requires = ["maturin>=1.5,<2.0"]
build-backend = "maturin"
[project]
name = "hypersync"
requires-python = ">=3.9"
dependencies = ["strenum>=0.4.15"]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Development Status :: 3 - Alpha",
"Topic :: Database :: Front-Ends",
"Topic :: Software Development :: Libraries",
]
dynamic = ["version"]
[project.optional-dependencies]
examples = [
"python-dotenv>=1.0.0",
"polars==1.36.1",
"tqdm-loggable==0.2",
"pyarrow==22.0.0",
]
[tool.maturin]
features = ["pyo3/extension-module"]
# See https://www.maturin.rs/metadata.html for options
[project.urls]
homepage = "https://envio.dev/"
documentation = "https://docs.envio.dev/docs/HyperSync/overview"
repository = "https://github.com/enviodev/hypersync-client-python"