-
Notifications
You must be signed in to change notification settings - Fork 78
/
setup.py
67 lines (62 loc) · 2.08 KB
/
setup.py
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
"""Foyer: Atomtyping and forcefield applying."""
from __future__ import print_function
from setuptools import find_packages, setup
#####################################
VERSION = "1.0.0"
ISRELEASED = True
if ISRELEASED:
__version__ = VERSION
else:
__version__ = VERSION + ".dev0"
#####################################
setup(
name="foyer",
version=__version__,
description=__doc__.split("\n")[0],
long_description=__doc__,
author="Janos Sallai, Christoph Klein",
author_email="[email protected], [email protected]",
url="https://github.com/mosdef-hub/foyer",
download_url="https://github.com/mosdef-hub/foyer/tarball/{}".format(__version__),
packages=find_packages(),
package_data={
"foyer": [
"foyer/tests/*.txt",
"foyer/tests/files/*.mol2",
"foyer/tests/files/*.pdb",
"foyer/tests/files/*.xml",
"foyer/forcefields/*.xml",
"opls_validation/*/*.top",
"opls_validation/*/*.gro",
"opls_validation/*/*.mol2",
"opls_validation/oplsaa.ff/*",
"examples/files/*",
]
},
entry_points={
"foyer.forcefields": [
"load_OPLSAA = foyer.forcefields.forcefields:load_OPLSAA",
"load_TRAPPE_UA = foyer.forcefields.forcefields:load_TRAPPE_UA",
]
},
package_dir={"foyer": "foyer"},
include_package_data=True,
license="MIT",
zip_safe=False,
keywords="foyer",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Chemistry",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
],
)