-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (32 loc) · 1004 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
36
37
38
39
[project]
name = "rapidstats"
version = "0.0.24"
description = "A library that implements fast statistical routines"
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.8"
authors = [{ name = "Cangyuan Li", email = "[email protected]" }]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
dependencies = ["polars>=1.0.0", "tqdm"]
[project.optional-dependencies]
pyarrow = ["pyarrow >= 7.0.0"]
[project.urls]
"Homepage" = "https://github.com/CangyuanLi/rapidstats"
"Source" = "https://github.com/CangyuanLi/rapidstats"
"Bug Reports" = "https://github.com/CangyuanLi/rapidstats/issues"
[build-system]
requires = ["maturin>=1.5,<2.0"]
build-backend = "maturin"
[tool.maturin]
features = ["pyo3/extension-module"]
python-source = "python"
module-name = "rapidstats._rustystats"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.isort]
profile = "black"
[tool.ruff.per-file-ignores]
"__init__.py" = ["E402", "F401"]