-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (37 loc) · 1.07 KB
/
Copy pathsetup.py
File metadata and controls
41 lines (37 loc) · 1.07 KB
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
#!/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.2.0',
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'),
python_requires='>=3.10',
install_requires=[
'numpy',
'scipy',
'matplotlib',
'networkx',
'mdtraj',
'scikit-learn',
],
classifiers = ["""\
Development Status :: 3 - Alpha
Operating System :: POSIX :: Linux
Operating System :: MacOS
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Scientific/Engineering :: Bio-Informatics
Topic :: Scientific/Engineering :: Chemistry
"""]
)