-
Notifications
You must be signed in to change notification settings - Fork 84
/
pyproject.toml
111 lines (102 loc) · 2.7 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
[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'},
{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.8"
dependencies = [
'numpy',
'scipy>=1.9.0',
'scikit-learn>=1.5.0',
'threadpoolctl>=3.1.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 = ['torch']
plotting = ['matplotlib', 'networkx']
units = ['pint>=0.20']
tests = [
'torch>=1.12.0; platform_system!="Darwin" and platform_system!="Windows"',
'pytest>=7.1.2',
'pytest-cov>=3.0.0',
'coverage[toml]',
'pytest-xdist>=2.5.0',
'flaky>=3.7.0',
'tqdm>=4.64.0',
"cython>=0.29.30",
"pybind11>=2.10.1",
"networkx",
"matplotlib",
"cmake>=3.24",
"ninja; platform_system!='Windows'"
]
docs = [
"sphinx",
"nbsphinx",
"sphinxcontrib-bibtex",
"matplotlib",
"networkx",
"sphinxcontrib-katex",
"sphinx-gallery",
"torch",
"memory_profiler",
"mdshare",
"nbconvert",
"jupyter",
"tqdm"
]
[build-system]
requires = [
"setuptools>=42",
"wheel",
"scikit-build>=0.16",
"cython>=0.29.30",
"pybind11>=2.10.1",
"numpy",
"cmake>=3.24",
"tomli; python_version < '3.11'",
"scipy>=1.9.3",
"ninja; platform_system!='Windows'",
"versioneer[toml]==0.28"
]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
filterwarnings = ["once", "ignore::UserWarning"]
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "deeptime/_version.py"
versionfile_build = "deeptime/_version.py"
tag_prefix = "v"
[tool.flake8]
ignore = ['E24', 'E121', 'E123', 'E126', 'E226', 'E704', 'W503', 'W504']
max-line-length = 120
[tool.coverage.report]
exclude_lines = ["@plotting_function", "pragma: no cover"]
omit = ["*/**/setup.py", "tests/*", "deeptime/_version.py"]
[tool.coverage.run]
omit = ["*/**/setup.py", "tests/*", "*/**/*.pyx", "deeptime/_version.py"]
[tool.cibuildwheel]
build-verbosity = 1