-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
35 lines (30 loc) · 871 Bytes
/
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
[build-system]
requires = ["maturin>=1.5,<2.0"]
build-backend = "maturin"
[project]
name = "data-generation"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]
dependencies = ["pyarrow", "typer"]
[project.optional-dependencies]
dev = ["pytest >= 7.2", "ipython", "ruff"]
spark = ["pyspark >= 3.5"]
pandas = ["pandas"]
polars = ["polars"]
duckdb = ["duckdb"]
repl = ["ipython", "jupyterlab"]
docs = ["mkdocs"]
all = ["data_generation[dev,spark,pandas,polars,duckdb,repl,docs]"]
[project.scripts]
generator = "data_generation:entry_point"
[tool.ruff]
line-length = 120
[tool.maturin]
features = ["pyo3/extension-module"]
python-source = "python"
module-name = "data_generation.native"