-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
88 lines (82 loc) · 2.33 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tda-mapper"
version = "0.10.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 = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
]
keywords = ["tda", "mapper", "topology", "topological data analysis"]
dependencies = [
"numpy>=1.20.1,<2.0.0",
"matplotlib>=3.3.4,<4.0.0",
"networkx>=2.5,<3.0.0",
"igraph>=0.11.8,<0.12.0",
"numba>=0.54,<0.62",
"pyvis>=0.3.2,<0.4.0",
"plotly>=6.0.1,<7.0.0",
"joblib>=1.4.2,<2.0.0",
]
requires-python = ">=3.8"
[project.optional-dependencies]
dev = [
"coverage[toml]",
"pandas",
"scikit-learn<1.6.0",
"black[jupyter]",
"isort",
"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",
]
[tool.black]
line-length = 88
target-version = ['py36']
skip-string-normalization = false
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.mypy_cache
| \.pytest_cache
| \.venv
| build
| dist
)/
'''
[tool.isort]
profile = "black"
line_length = 88
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
combine_as_imports = true
skip = ["venv", ".venv", "build", "dist"]