-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (47 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
55 lines (47 loc) · 1.22 KB
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
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "kimmdy-grappa"
version = "0.4.0"
license = {text = "GPL-3.0"}
description = "Parameterization interface between KIMMDY and GrAPPa"
authors = [{name = "Eric Hartmann", email = "eric.hartmann@h-its.org"}]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
requires-python = ">= 3.8"
dependencies = [
"kimmdy",
"MDAnalysis",
# "grappa-ff" # --index-url https://download.pytorch.org/whl/cpu
]
# [tool.uv.sources]
# torch = [{ index = "pytorch-cpu" }]
# torchvision = [{ index = "pytorch-cpu" }]
[[tool.uv.index]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu"
explicit = true
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.optional-dependencies]
dev = [
"pytest",
"tox",
"black",
"hypothesis",
"jupyter",
"griffe >= 0.33, < 1.0.0",
"quartodoc",
]
[project.entry-points."kimmdy.parameterization_plugins"]
grappa = "kimmdy_grappa.grappa_interface:GrappaInterface"
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false