-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (41 loc) · 1.27 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
[build-system]
requires = ["maturin>=1.7,<2.0", "numpy >= 2.0.0"]
build-backend = "maturin"
[tool.pytest.ini_options]
minversion = "6.2.2"
addopts = [
"--import-mode=importlib",
]
testpaths = [
"tests",
]
[project]
name = "ckmeans"
description = "Optimal univariate (1D) clustering based on Ckmeans.1d.dp"
authors = [{ name = "Stephan Hügel", email = "urschrei@gmail.com" }]
license = {file = "license.txt"}
keywords = ["ckmeans", "clustering", "jenks"]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Blue Oak Model License (BlueOak-1.0.0)",
"Operating System :: OS Independent",
]
[project.urls]
Repository = "https://github.com/urschrei/ckmeans_py"
Tracker = "https://github.com/urschrei/ckmeans_py/issues"
[tool.maturin]
features = ["pyo3/extension-module"]
[project.optional-dependencies]
test = [
"pytest >= 7.4.2",
"ckmeans-1d-dp >= 4.3.4.4"
]
[tool.maturin.dynamic]
readme = {file = "README.md", content-type = "text/markdown"}