-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·45 lines (41 loc) · 995 Bytes
/
pyproject.toml
File metadata and controls
executable file
·45 lines (41 loc) · 995 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
45
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
exclude = [
"tests/data",
]
[tool.hatch.build.targets.wheel]
packages = ["MPP"]
[project]
name = "mpp-lumping"
description = "Lumping tool for state trajectories"
dynamic = ["version"]
dependencies = [
"pyyaml>=6.0.2",
"tqdm>=4.67.1",
"numpy>=2.2.5",
"seaborn>=0.13.2",
"networkx>=3.5",
"mdtraj>=1.11.0",
"scikit_learn>=1.7.2",
"pygpcca>=1.0.4",
"anytree>=2.12.1",
"fa2_modified>=0.3.10",
"msmhelper>=1.1.1",
"bezier>=2024.6.20",
]
requires-python = ">= 3.10"
authors = [{name = "Felix Guischard", email = "felix0180@web.de"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/moldyn/MPP"
Issues = "https://github.com/moldyn/MPP/issues"
[tool.hatch.version]
path = "MPP/__init__.py"