-
Notifications
You must be signed in to change notification settings - Fork 28
/
pyproject.toml
54 lines (46 loc) · 1.43 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
[build-system]
requires = ["setuptools >= 61.0", "Cython"]
build-backend = "setuptools.build_meta"
[project]
name = 'jenkspy'
dynamic = ["version"]
dependencies = [
"numpy"
]
requires-python = ">= 3.7"
authors = [
{name = "Matthieu Viry", email = "[email protected]"},
]
maintainers = [
{name = "Matthieu Viry", email = "[email protected]"},
]
description = "Compute Natural Breaks (Fisher-Jenks algorithm)"
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python",
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://github.com/mthh/jenkspy"
Repository = "https://github.com/mthh/jenkspy.git"
Issues = "https://github.com/mthh/jenkspy/issues"
Changelog = "https://github.com/mthh/jenkspy/blob/master/CHANGES.rst"
[tool.setuptools]
packages = ["jenkspy"]
include-package-data = false
[tool.setuptools.package-data]
jenkspy = ["src/*"]
[tool.setuptools.dynamic]
version = {attr = "jenkspy.__version__"}
readme = {file = "README.md", content-type = "text/x-rst"}