-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
37 lines (32 loc) · 968 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
36
37
[tool.poetry]
name = "torch_topological"
version = "0.1.7"
description = "A framework for topological machine learning based on `pytorch`."
authors = ["Bastian Rieck <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.md"
include = ["README.md"]
[tool.poetry.dependencies]
python = ">=3.9"
matplotlib = "^3.5.0"
giotto-ph = "^0.2.0"
torch = ">=1.12.0"
gudhi = "^3.4.1"
POT = "^0.8.0"
[tool.poetry.dev-dependencies]
pytest = ">=5.2"
Sphinx = ">=4.3.1"
sphinx-rtd-theme = "^1.0.0"
tqdm = "^4.62.3"
torchvision = ">=0.11.2"
flake8 = "^4.0.1"
[tool.black]
line-length = 79
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[project.urls]
homepage = "https://github.com/aidos-lab/pytorch-topological"
documentation = "https://pytorch-topological.readthedocs.io/"
issues = "https://github.com/aidos-lab/pytorch-topological/issues"
changelog = "https://github.com/aidos-lab/pytorch-topological/blob/main/CHANGELOG.md"