forked from fmaschietto/mdigest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (34 loc) · 1.52 KB
/
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
31
32
33
34
35
36
37
from setuptools import setup, find_packages
VERSION = '0.1.0'
DESCRIPTION = 'Best practices made easy for analysis of coorrelated motions from molecular dynamics simulations.'
LONG_DESCRIPTION = 'MDiGest is a best-practices-made-easy Python package that handles the most common issues in ' \
'the network-based analysis of correlated motions from molecular dynamics simulations.'
#CONTRIBUTORS = 'Gregory W. Kyro'
# Setting up
setup(
name="mdigest",
version=VERSION,
author="Federica Maschietto, Brandon Allen",
author_email="Federica Maschietto <federica.maschietto@gmail.com>, Brandon Allen <brandon.allen@yale.edu>",
#contributors=CONTRIBUTORS,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
# other arguments...
#conda_channels=['conda-forge', 'schrodinger'],
#conda_dependencies=[
# 'pymol-bundle',
#],
install_requires=['pyemma==2.5.12',
'MDAnalysis>=2.3.0','silx>=1.1.1', 'numba>=0.56.4',
'python-louvain==0.15', 'nglview>=3.0.3', 'networkx>=2.7.1'],
extras_require = {
'core':['pymol>=2.0']},
keywords=['python', 'correlation', 'molecular dynamics', 'MD trajectory analysis', 'correlated motions', 'network analysis', 'community network'],
url="https://github.com/fmaschietto/MDiGest",
classifiers=[
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
],
)