-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
35 lines (32 loc) · 976 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
33
34
35
[tool.poetry]
name = "chromatic_tda"
version = "1.1.7post0"
description = "Tool to compute six-packs of persistence diagrams for chromatic point clouds"
authors = [
"Ondrej Draganov <[email protected]>",
"Mohammad Mahini <[email protected]>"
]
license = "AGPL-3.0-or-later"
readme = "README.md"
homepage = "https://github.com/OnDraganov/chromatic-tda"
repository = "https://github.com/OnDraganov/chromatic-tda"
documentation = "https://github.com/OnDraganov/chromatic-tda"
packages = [
{include = "chromatic_tda"}
]
keywords = [
"tda", "topological data analysis", "chromatic", "chromatic alpha", "delaunay", "persistence", "persistent homology"
]
[tool.poetry.dependencies]
python = ">=3.10"
numpy = "^2.1"
matplotlib = ">=3.8.0"
scipy = "^1.14"
mypy = "^1.3.0"
typing_extensions = "^4.11.0"
pytest = "^8.1.1"
[tool.mypy]
plugins = "numpy.typing.mypy_plugin"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"