forked from deeptime-ml/deeptime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (55 loc) · 1.56 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
[project]
name = "deeptime"
readme = "README.md"
description = "Python library for analysis of time series data including dimensionality reduction, clustering, and Markov model estimation."
keywords = [
"markov-model", "hidden-markov-model", "time-series-analysis", "covariance-estimation",
"koopman-operator", "coherent-set-detection"
]
authors = [
{name = 'Moritz Hoffmann', email = '[email protected]'},
{name = 'Martin Scherer'},
{name = 'Tim Hempel'},
{name = 'Andreas Mardt'},
{name = 'Maaike Galama'},
{name = 'Brian de Silva'},
{name = 'Brooke Husic'},
{name = 'Stefan Klus'},
{name = 'Hao Wu'},
{name = 'Nathan Kutz'},
{name = 'Steven Brunton'},
{name = 'Frank Noé'}
]
requires-python = ">= 3.7"
dependencies = [
'numpy>=1.19.5',
'scipy>=1.1.0',
'scikit-learn>=0.14.1',
'threadpoolctl>=2.0.0'
]
dynamic = ['version']
[project.urls]
homepage = "https://deeptime-ml.github.io"
repository = "https://github.com/deeptime-ml/deeptime"
documentation = "https://deeptime-ml.github.io"
download = "https://pypi.org/project/deeptime/#files"
[project.optional-dependencies]
deep-learning = ['pytorch']
plotting = ['matplotlib', 'networkx']
units = ['pint>=0.19.1']
[build-system]
requires = [
"setuptools>=42",
"wheel",
"scikit-build>=0.13",
"cython",
"pybind11>=2.9.0",
"numpy>=1.14",
"cmake>=3.22",
"toml",
"scipy",
"ninja; platform_system!='Windows'"
]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
filterwarnings = ["once", "ignore::UserWarning"]