-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
53 lines (47 loc) · 1.69 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
"""OpenMM-ML: A high level API for using machine learning models in OpenMM simulations
"""
from setuptools import setup, find_packages
DOCLINES = __doc__.split("\n")
########################
__version__ = '1.2'
VERSION = __version__
ISRELEASED = False
########################
CLASSIFIERS = """\
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3
Topic :: Scientific/Engineering :: Bio-Informatics
Topic :: Scientific/Engineering :: Chemistry
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Operating System :: Unix
Operating System :: MacOS
"""
setup(
name='openmmml',
author='Peter Eastman',
description=DOCLINES[0],
long_description="\n".join(DOCLINES[2:]),
version=__version__,
license='MIT',
url='https://github.com/openmm/openmm-ml',
platforms=['Linux', 'Mac OS-X', 'Unix', 'Windows'],
classifiers=CLASSIFIERS.splitlines(),
packages=find_packages(),
zip_safe=False,
install_requires=['numpy', 'openmm >= 7.5'],
entry_points={
'openmmml.potentials': [
'ani1ccx = openmmml.models.anipotential:ANIPotentialImplFactory',
'ani2x = openmmml.models.anipotential:ANIPotentialImplFactory',
'mace = openmmml.models.macepotential:MACEPotentialImplFactory',
'mace-off23-small = openmmml.models.macepotential:MACEPotentialImplFactory',
'mace-off23-medium = openmmml.models.macepotential:MACEPotentialImplFactory',
'mace-off23-large = openmmml.models.macepotential:MACEPotentialImplFactory'
]
}
)