-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
30 lines (26 loc) · 866 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
#!/usr/bin/env python
# Setup script for bestmsm package
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='MasterMSM',
version='0.1dev',
description='Algorithms to construct master equation / Markov state models',
url='http://github.com/daviddesancho/MasterMSM',
author='David De Sancho',
author_email='daviddesancho.at.gmail.com',
license='GPL',
packages=find_packages(),
keywords= "markov state model",
long_description=read('README.md'),
classifiers = ["""\
Development Status :: 1 - Planning
Operating System :: POSIX :: Linux
Operating System :: MacOS
Programming Language :: Python :: 2.7
Topic :: Scientific/Engineering :: Bio-Informatics
Topic :: Scientific/Engineering :: Chemistry
"""]
)