-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
85 lines (80 loc) · 2.88 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import io
import os
import re
from glob import glob
from setuptools import find_packages
from setuptools import setup
def read(*names, **kwargs):
with io.open(
os.path.join(os.path.dirname(__file__), *names),
encoding=kwargs.get('encoding', 'utf8')
) as fh:
return fh.read()
setup(
name='md_davis',
version='0.4.1',
description='A tool for comparative analysis of molecular dynamics '
'simulations of proteins.',
long_description='%s' % (re.compile('^.. start-badges.*^.. end-badges', re.M | re.S).sub('', read('README.md'))),
long_description_content_type='text/markdown',
author='Dibyajyoti Maity',
author_email='[email protected]',
url='https://github.com/djmaity/md-davis',
packages=find_packages(exclude=['tests']),
py_modules=[os.path.splitext(os.path.basename(path))[0] for path in glob('src/*.py')],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
# 'Programming Language :: Python :: 3.7',
# 'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Visualization',
],
project_urls={
'Documentation': 'https://md-davis.readthedocs.io/',
'Changelog': 'https://md-davis.readthedocs.io/en/latest/changelog.html',
'Issue Tracker': 'https://github.com/djmaity/md-davis/issues',
},
license='MIT license',
keywords=[
'analysis', 'data visualization', 'molecular dynamics', 'protein'
],
python_requires='>=3.6',
install_requires=['biopandas',
'biopython', # TODO: Refactor dependency
'click',
'h5py',
'matplotlib',
'more_itertools',
'numpy',
'pandas',
'plotly',
'pmw',
'scikit-learn',
'scipy',
'toml',
'mdtraj',
'wxpython'
],
include_package_data=True,
setup_requires=['flake8', 'pytest-runner'],
test_suite='tests',
tests_require=['pytest'],
zip_safe=False, # TODO: check if it can be made zip safe
entry_points={
'console_scripts': [
'md_davis=md_davis.cli:main',
'md-davis=md_davis.cli:main',
'md_davis_gui=md_davis.gui.__main__:main',
'md-davis-gui=md_davis.gui.__main__:main',
],
},
)