-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 970 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (25 loc) · 970 Bytes
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
#!/usr/bin/env python
from setuptools import setup, find_packages
from glob import glob
from os.path import basename, splitext
setup(name='emus',
version='0.9.4',
description="Tools and Methods associated with the Eigenvector Method for Umbrella Sampling (EMUS)",
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Scientific/Engineering',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
# packages=['emus'],
packages=find_packages('src'),
package_dir={'': 'src'},
py_modules=[splitext(basename(path))[0] for path in glob('src/*.py')],
scripts=['scripts/wemus.py'],
install_requires=['numpy', 'scipy', 'h5py'],
url='https://github.com/ehthiede/EMUS',
author='Erik Henning Thiede'
)