-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
136 lines (116 loc) · 4.04 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
"""
Installation setup.
Read the full installation instructions at:
https://taurenmd.readthedocs.io/en/latest/installation.html
To install taurenmd run:
>>> python setup.py
To install taurenmd in developer mode run:
>>> python setup.py develop
To install taurenmd without ANY of its dependencies:
>>> python setup.py --no-deps
"""
from __future__ import absolute_import, print_function
import io
import os
import re
from glob import glob
from os.path import basename, dirname, join, splitext
from setuptools import find_packages, setup
install_requires = [
]
if os.getenv('READTHEDOCS'):
install_requires = []
# support deps
supdeps = [
'matplotlib>=3,<4',
'numpy>=1,<2',
]
# Molecular Dynamics deps
mddeps = [
'MDAnalysis==2',
'mdtraj>=1.9,<2',
]
alldeps = mddeps + supdeps
def _read(*names, **kwargs):
with io.open(
join(dirname(__file__), *names),
encoding=kwargs.get('encoding', 'utf8')
) as fh:
return fh.read()
setup(
name='taurenmd',
version='0.11.2',
license='GNU GPLv2',
description='A command-line interface for analysis routines in Molecular Dynamics data.',
long_description='%s\n%s' % (
re.compile('^.. start-badges.*^.. end-badges', re.M | re.S).sub('', _read('README.rst')),
re.sub(':[a-z]+:`~?(.*?)`', r'``\1``', _read('CHANGELOG.rst'))
),
author='Joao MC Teixeira',
author_email='[email protected]',
url='https://github.com/joaomcteixeira/taurenmd',
packages=find_packages('src'),
package_dir={'': 'src'},
py_modules=[splitext(basename(path))[0] for path in glob('src/*.py')],
include_package_data=True,
zip_safe=False,
classifiers=[
# complete classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: Unix',
'Operating System :: POSIX',
'Environment :: Console',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Utilities',
],
project_urls={
'Documentation': 'https://taurenmd.readthedocs.io/',
'Changelog': 'https://taurenmd.readthedocs.io/en/latest/changelog.html',
'Issue Tracker': 'https://github.com/joaomcteixeira/taurenmd/issues',
},
keywords=[
'Molecular Dynamics',
'Proteins',
'DNA',
'RNA',
'Structural Biology',
'Molecular Biology',
'Biochemistry',
],
python_requires='>=3.8, <3.11',
install_requires=install_requires,
extras_require={
'all': alldeps,
'md': mddeps,
'sup': supdeps,
},
entry_points={
'console_scripts': [
'taurenmd = taurenmd.cli:maincli',
# add bellow, by alphabetical, order your newly developed
# client, following the nomenclature provided,
# where NAME is the command line name of your subroutine.
# 'tmdNAME = taurenmd.cli_NAME:maincli',
'tmdpangle = taurenmd.cli_pangle:maincli',
'tmddist = taurenmd.cli_distances:maincli',
'tmdfext = taurenmd.cli_fext:maincli',
'tmdimagemol = taurenmd.cli_imagemol:maincli',
'tmdnosol = tauremd.cli_nosol:maincli',
'tmdreport = taurenmd.cli_report:maincli',
'tmdrot = taurenmd.cli_rot:maincli',
'tmdrmsf = taurenmd.cli_rmsf:maincli',
'tmdrmsd = taurenmd.cli_rmsd:maincli',
'tmdtrajedit = taurenmd.cli_trajedit:maincli',
]
},
)