-
Notifications
You must be signed in to change notification settings - Fork 20
/
pyproject.toml
87 lines (69 loc) · 1.65 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "wepy"
description = "Weighted Ensemble Framework"
readme = {"file" = "README.org", "content-type" = "text/plain"}
license = "MIT"
authors = [
{ name = "Samuel Lotz", email = "[email protected]" },
{ name = "Alex Dickson", email = "[email protected]" },
{ name = "Tom Dixon" },
{ name = "Robert Hall" },
{ name = "Nicole Roussey" },
]
dynamic = ["version"]
classifiers = [
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3"
]
dependencies = [
"numpy",
"h5py>=3",
"networkx",
"pandas",
"dill",
"click",
"scipy",
"geomm",
"tabulate",
"jinja2",
"pint",
"multiprocessing_logging",
]
[project.optional-dependencies]
md = [
"mdtraj",
"openmm_systems==0.0.0",
]
distributed = [
"dask[bag]",
]
prometheus = [
"prometheus_client",
"pympler",
]
graphics = [
"matplotlib",
# NOTE: pillow only needed for matplotlib but it needs to be above this
# version for security reasons. If matplotlib also adds these constraints this
# can be removed
"pillow>=10.0.1",
]
[project.urls]
Documentation = "https://adicksonlab.github.io/wepy/index.html"
Source = "https://github.com/ADicksonLab/wepy"
Issues = "https://github.com/ADicksonLab/wepy/issues"
[project.scripts]
wepy = "wepy.__main__:cli"
# NOTE: currently disabled since it requires OpenMM currently to work which is
# not ideal for unit testing
# [project.entry-points.pytest11]
# pytest-wepy = "pytest_wepy"
[tool.interrogate]
fail-under = 100
verbose = 2
[tool.hatch.version]
path = "src/wepy/__about__.py"