-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
48 lines (44 loc) · 1.25 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tda-mapper"
version = "0.9.0"
description = "A simple and efficient Python implementation of Mapper algorithm for Topological Data Analysis"
readme = "README.md"
authors = [{ name = "Luca Simi", email = "[email protected]" }]
maintainers = [{ name = "Luca Simi", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3"
]
keywords = ["tda", "mapper", "topology", "topological data analysis"]
dependencies = [
"matplotlib>=3.3.4",
"networkx>=2.5",
"igraph>=0.11.8",
"numba>=0.54",
"numpy>=1.20.1, <2.0.0",
"plotly>=6.0.0, <7.0.0",
"pyvis>=0.3.2",
"joblib>=1.4.2",
]
requires-python = ">=3.6"
[project.optional-dependencies]
dev = [
"coverage[toml]",
"pandas",
"scikit-learn<1.6.0",
"flake8",
]
[project.urls]
Homepage = "https://github.com/lucasimi/tda-mapper-python"
Documentation = "https://tda-mapper.readthedocs.io"
Issues = "https://github.com/lucasimi/tda-mapper-python/issues"
[tool.coverage.run]
omit = [
"**/_*.py",
"benchmarks/*.py",
]