-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
63 lines (56 loc) · 1.71 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
[build]
[project]
name = "teaspoon"
version = "1.5.23"
authors = [
{ name="Elizabeth Munch", email="[email protected]" },
{ name="Firas Khasawneh", email="[email protected]" },
]
description = "A Topological Signal Processing Package"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = ["cycler>=0.11.0",
"fonttools>=4.34.4",
"joblib>=1.2.0",
"kiwisolver>=1.4.4",
"matplotlib>=3.5.2",
"networkx>=3.1",
"numpy>=1.23.1",
"packaging>=23.1",
"Pillow>=9.3.0",
"POT>=0.8.2",
"pyentrp>=0.7.1",
"pyparsing<3.1,>=2.3.1",
"python-dateutil>=2.8.2",
"scikit-learn>=1.1.1",
"scipy>=1.8.1",
"six>=1.16.0",
"threadpoolctl>=3.1.0",
"ripser>=0.6.4",
"sympy>=1.11.1",
"sortedcontainers>=2.4.0",
"persim",
"pandas>=1.4.1",
"gudhi",
"numba",
"importlib_resources",
"pooch",
"ddeint"
]
[project.optional-dependencies]
full = [ "teaspoon[full]",
"tensorflow",
"eagerpy"
]
[tool.setuptools.packages.find]
where = ["teaspoon"]
[tool.setuptools.package-data]
teaspoon = ["ML/datasets/*.pickle"]
[project.urls]
repository = "https://github.com/TeaspoonTDA/teaspoon"
homepage = "https://github.com/TeaspoonTDA/teaspoon"
documentation = "https://teaspoontda.github.io/teaspoon/"