-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
41 lines (37 loc) · 1.23 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
"""
Serenity Force Field.
"""
import sys
from setuptools import find_packages, setup
needs_pytest = {"pytest", "test", "ptr"}.intersection(sys.argv)
pytest_runner = ["pytest-runner"] if needs_pytest else []
short_description = __doc__.split("\n")
try:
with open("README.md", "r") as handle:
long_description = handle.read()
except IOError:
long_description = "\n".join(short_description[2:])
setup(
name="serenityff",
author="rinikerlab",
author_email="mlehner@ethz.ch",
description=short_description[0],
long_description=long_description,
long_description_content_type="text/markdown",
url="http://github.com/rinikerlab/serenityff",
setup_requires=[] + pytest_runner,
version="2.0.1",
cmdclass={},
license="MIT",
packages=find_packages(),
# packages=find_namespace_packages(include=["serenityff/charge/*"]),
include_package_data=True,
keywords="molecular dynamics, force field, parametrization, nonbonded parameters, explainable ml",
python_requires=">=3.7",
entry_points={
"openff.toolkit.plugins.handlers": [
"SerenityFFCharge = serenityff.charge.utils.serenityff_charge_handler:SerenityFFChargeHandler"
]
},
)
print("test setup.py done")