-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
32 lines (29 loc) · 917 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "statistical-distance"
authors = [
{name = "Andrzej Zielezinski", email = "[email protected]"},
]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
]
keywords = ["distance", "statistics", "measure", "metric"]
requires-python = ">=3.6"
dependencies = [
"numpy >=1.16.4",
]
dynamic = ["version", "description"]
[tool.flit.module]
name = "distance"
[project.urls]
Documentation = "https://github.com/aziele/statistical-distance"
Source = "https://github.com/aziele/statistical-distance"