-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 1022 Bytes
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 1022 Bytes
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
[project]
name = "torch_topological"
version = "0.1.9"
description = "A framework for topological machine learning based on `pytorch`."
authors = [
{name = "Bastian Rieck", email = "bastian@rieck.me"},
]
license = "BSD-3-Clause"
readme = "README.md"
requires-python = ">=3.9,<4"
dependencies = [
"matplotlib>=3.5",
"giotto-ph>=0.2",
"torch>=1.12",
"gudhi>=3.4",
"POT>=0.9",
]
[tool.uv]
prerelease = "allow"
index-strategy = "unsafe-best-match"
dev-dependencies = [
"pytest>=5.2",
"Sphinx>=4.3",
"sphinx-rtd-theme>=1.0",
"tqdm>=4.62",
"torchvision>=0.11",
"flake8>=4.0",
]
[tool.black]
line-length = 79
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[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"