-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (58 loc) · 1.34 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
[build-system]
requires = [
"setuptools >= 61.0",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "domhmm"
description = "HMM model to determine Lo or Ld domains from coarse grained or atomistic MD simulations."
license = {file = "LICENSE" }
authors = [
{name = "Marius FW Trollmann", email = "marius.trollmann@fau.de"},
{name = "Yusuf Eren Tunç", email = "eren.tunc@fau.de"},
]
maintainers = [
{name = "Marius FW Trollmann", email = "marius.trollmann@fau.de"},
{name = "Yusuf Eren Tunç", email = "eren.tunc@fau.de"},
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"MDAnalysis>=2.0.0",
"hmmlearn == 0.3.2",
"networkx >= 3.0.0",
"numpy >= 1.26.0, <2.0.0",
"scikit-learn >= 1.4.0",
"scipy >= 1.13.0"
]
keywords = [
"molecular simulations",
]
dynamic = [
"version",
]
[project.optional-dependencies]
test = [
"pytest>=6.0",
"pytest-xdist>=2.5",
"pytest-cov>=3.0",
]
doc = [
"sphinx",
"sphinx_rtd_theme",
]
# [project.urls]
# source = "https://github.com/BioMemPhys-FAU/domhmm"
# documentation = "https://domhmm.readthedocs.io"
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"domhmm/tests",
]
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "domhmm/_version.py"
versionfile_build = "domhmm/_version.py"
tag_prefix = ""