-
Notifications
You must be signed in to change notification settings - Fork 62
/
pyproject.toml
55 lines (47 loc) · 1.67 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
55
[build-system]
requires = ["setuptools>=61.0", "wheel", "numpy", "Cython"]
build-backend = "setuptools.build_meta"
[project]
name = "ripser"
dynamic = ["version"]
description = "A Lean Persistent Homology Library for Python"
readme = "README.md"
authors = [
{ name = "Chris Tralie", email = "[email protected]" },
{ name = "Nathaniel Saul", email = "[email protected]" },
]
maintainers = [
{ name = "Chris Tralie", email = "[email protected]" },
{ name = "Nathaniel Saul", email = "[email protected]" },
{ name = "Michael Catanzaro", email = "[email protected]" },
]
dependencies = ["Cython", "numpy", "persim", "scipy", "scikit-learn"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Healthcare Industry",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
]
keywords = [
"topological data analysis",
"persistent homology",
"Rips filtration",
"algebraic topology",
"unsupervised learning",
"persistence diagrams",
]
[project.optional-dependencies]
testing = ["pytest", "pytest-cov"]
docs = ["sktda_docs_config"]
examples = ["tadasets", "jupyter", "pillow"]
[project.urls]
Homepage = "https://ripser.scikit-tda.org"
Documentation = "https://ripser.scikit-tda.org"
Repository = "https://github.com/scikit-tda/ripser.py"
Issues = "https://github.com/scikit-tda/ripser.py/issues"
Changelog = "https://github.com/scikit-tda/ripser.py/blob/master/RELEASE.txt"