-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
59 lines (55 loc) · 1.66 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
56
57
58
[build-system]
requires = [
"numpy",
"Cython",
"setuptools",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "multipers"
version = "2.2.1"
description = "Multiparameter Topological Persistence for Machine Learning"
readme = "README.md"
authors = [
{ name = "David Loiseaux", email = "david.lapous@proton.me" },
{ name = "Hannah Schreiber" },
]
maintainers = [{ name = "David Loiseaux", email = "david.lapous@proton.me" }]
dependencies = [
#`import multipers`
"numpy",
"gudhi>=3.8", ## Needs simplextree serialize
"tqdm",
"scipy",
"joblib",
"matplotlib",
#`pytest multipers`
"scikit-learn",
"filtration-domination",
"pykeops",
"pot"
]
requires-python = ">=3.10"
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
]
keywords = ["TDA", "Persistence", "Multiparameter", "sklearn"]
[project.urls]
source = "https://github.com/DavidLapous/multipers"
download = "https://pypi.org/project/multipers/#files"
tracker = "https://github.com/DavidLapous/multipers/issues"
"release notes" = "https://github.com/DavidLapous/multipers/releases"
# # automatic search for packages
[tool.setuptools.packages.find]
include = ["multipers*"]