forked from alchemistry/alchemlyb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·33 lines (27 loc) · 979 Bytes
/
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
#! /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]',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
],
packages=find_packages('src'),
package_dir={'': 'src'},
license='BSD',
long_description=open('README.rst').read(),
tests_require = ['pytest', 'alchemtest'],
install_requires=['numpy', 'pandas>=0.23.0', 'pymbar', 'scipy', 'scikit-learn']
)