forked from openforcefield/openff-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (34 loc) · 1.18 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
"""
openff-toolkit
A modern, extensible library for molecular mechanics force field science from the Open Force Field Consortium.
"""
from setuptools import find_namespace_packages, setup
import versioneer
short_description = __doc__.split("\n")
try:
with open("README.md") as handle:
long_description = handle.read()
except OSError:
long_description = "\n".join(short_description[2:]),
setup(
name="openff-toolkit",
author="Open Force Field Consortium",
author_email="[email protected]",
description=short_description[0],
long_description=long_description,
long_description_content_type="text/markdown",
keywords="molecular mechanics, force field, parameterization",
url="http://github.com/openforcefield/openff-toolkit",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
license="MIT",
packages=find_namespace_packages(include=['openff.*']),
include_package_data=True,
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: MIT",
'Programming Language :: Python :: 3',
],
entry_points={'console_scripts': []},
)