-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (30 loc) · 957 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mdna"
version = "0.0.1"
description = "Software module for DNA structure analysis and generation"
readme = "README.md"
authors = [{ name = "Thor van Heesch", email = "t.vanheesch@uva.nl" }]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
keywords = ["Molecular Dynamics",
"Structure Analysis",
"Structuer Generation Tool",
"Molecular Toolkit",]
dependencies = ["mdtraj","numpy","scipy","matplotlib","biopython"]
requires-python = ">=3.10"
[project.urls]
Homepage = "https://github.com/heezch/mdna"
[tool.setuptools]
packages = ["mdna"]
package-dir = {"" = "mdna"}
py-modules = ["__init__"] # dash, not underscore
[tool.pytest.ini_options]
testpaths = ["tests"]