-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (19 loc) · 831 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (19 loc) · 831 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import io
from setuptools import find_packages, setup
import os
REQUIRED = [ 'numpy', 'scipy', 'pandas', 'numba', 'six']
here = os.path.abspath(os.path.dirname(__file__))
# Import the README and use it as the long-description.
# Note: this will only work if 'README.rst' is present in your MANIFEST.in file!
with io.open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = '\n' + f.read()
setup(name='PyDHAMed',
version='0.1',
description='Dynamic Histogram Analysis To Determine Free Energies and Rates from Biased Simulations',
url='https://github.com/bio-phys/PyDHAMed',
author='Lukas Stelzl, Gerhard Hummer',
author_email='flyingcircus@example.com',
install_requires=REQUIRED,
license='BSD-3-Clause',
packages=['pydhamed'],
zip_safe=False)