-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
55 lines (51 loc) · 2.09 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
[build-system]
requires = ["setuptools >= 64", "numpy >= 1.17", "cython"]
build-backend = "setuptools.build_meta"
[project]
name = "aimmd"
version = "0.9.1dev2"
dependencies = ["numpy >= 1.17", "cython",
"openpathsampling", "mdtraj", "networkx",
"h5py >= 3",
"mdanalysis", # only needed for distributed examples
"asyncmd",
]
requires-python = ">=3.10"
authors = [{ name = "Hendrik Jung", email = "[email protected]"}]
maintainers = [{ name = "Hendrik Jung", email = "[email protected]"}]
description = """aimmd (AI for Molecular Mechanism Discovery) autonomously \
steers (a large number of) molecular dynamics simulations to effciently sample\
and understand rare transition events."""
readme = "README.md"
keywords = ["science", "MD", "Molecular Dynamics", "molecular-dynamics",
"Path Sampling", "Transition Path Sampling", "TPS",
"Machine Learning", "ML", "Artificial Intelligence", "AI",
"committor", "commitment probability", "reaction coordinate", "RC",
"high performance computing", "HPC",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
]
[project.optional-dependencies]
#docs = ["sphinx"] # TODO!
tests = ["pytest", "pytest-asyncio"]
tests-all = ["aimmd[tests]", "coverage", "pytest-cov"]
dev = ["aimmd[tests-all]"] #["aimmd[docs,tests-all]"]
[project.urls]
#Documentation =
Repository = "https://github.com/bio-phys/aimmd.git"
Issues = "https://github.com/bio-phys/aimmd/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["aimmd*"]
namespaces = false