-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathpyproject.toml
59 lines (53 loc) · 1.69 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
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "foyer"
description = "Atomtyping and application of forcefields."
readme = "README.md"
authors = [
{name = "Janos Sallai", email = "[email protected]"},
{name = "Christopher Klein", email = "[email protected]"},
]
maintainers = [
{name = "Nicholas Craven", email = "[email protected]"},
{name = "Chris Jones", email = "[email protected]"},
]
license= {text = "MIT"}
classifiers=[
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Chemistry",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
]
urls = {Homepage = "https://github.com/mosdef-hub/foyer"}
requires-python = ">=3.9"
dynamic = ["version"]
[tool.setuptools]
zip-safe = false
include-package-data = true
license-files = ["LICENSE"]
[tool.setuptools.packages]
find = {namespaces = false}
[tool.setuptools.package-data]
foyer = [
'"examples/files/*"',
'"foyer/forcefields/*.xml"',
'"foyer/forcefields/*.xml"',
'"opls_validation/*.top"',
'"opls_validation/*.gro"',
'"opls_validation/*.mol2"',
'"opls_validation//oplsaa.ff/*"',
]
[project.entry-points."foyer.forcefields"]
load_OPLSAA = "foyer.forcefields.forcefields:load_OPLSAA"
load_TRAPPE_UA = "foyer.forcefields.forcefields:load_TRAPPE_UA"
[tool.setuptools.dynamic]
version = {attr = "foyer.__version__"}