forked from alchemistry/alchemlyb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·49 lines (43 loc) · 1.73 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
#! /usr/bin/python
"""Setuptools-based setup script for alchemlyb.
For a basic installation just type the command::
python setup.py install
"""
from setuptools import setup, find_packages
import versioneer
setup(name='alchemlyb',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='the simple alchemistry library',
author='David Dotson',
author_email='[email protected]',
maintainer='Oliver Beckstein',
maintainer_email='[email protected]',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows ',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages=find_packages('src'),
package_dir={'': 'src'},
license='BSD',
long_description=open('README.rst').read(),
long_description_content_type='text/x-rst',
python_requires='>=3.8',
tests_require = ['pytest', 'alchemtest'],
install_requires=['numpy', 'pandas>=1.4', 'pymbar>=3.0.5,<4',
'scipy', 'scikit-learn', 'matplotlib']
)