-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (36 loc) · 1023 Bytes
/
setup.py
File metadata and controls
45 lines (36 loc) · 1023 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
from setuptools import setup, find_packages
from glob import glob
from os.path import basename
from os.path import dirname
from os.path import join
from os.path import splitext
setup(
name='WepyAnalysis',
version='0.1',
description='Tools for analyzing weighted ensemble (WE) simulation data from Wepy',
author='Ceren Kilinc, Samik Bose, Alex Dickson',
author_email='kilincce@msu.com',
license="MIT",
classifiers=[
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
'Programming Language :: Python :: 3'
],
#package
packages=find_packages(where='src'),
package_dir={'' : 'src'},
include_package_data=True,
# SNIPPET: this is a general way to do this
py_modules=[splitext(basename(path))[0] for path in glob('src/*.py')],
install_requires=[
'numpy',
'scipy',
'h5py',
'mdtraj',
'wepy >= 1.2',
'csnanalysis >= 0.6.0',
'geomm >= 0.3',
'scikit-learn',
'deeptime',
],
)