-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
73 lines (63 loc) · 2.29 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
"""Python program, based on Prody, for pathogenicity prediction of human
missense variants. See: https://github.com/prody/rhapsody
"""
from setuptools import setup, find_packages
from os import path
from io import open
__author__ = "Luca Ponzoni"
__date__ = "December 2019"
__maintainer__ = "Luca Ponzoni"
__email__ = "[email protected]"
__status__ = "Production"
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'rhapsody/VERSION'), encoding='utf-8') as f:
version = f.read()
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='prody-rhapsody',
version=version,
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
python_requires='>=3.6, <4',
install_requires=[
'requests', 'tqdm',
'numpy', 'scikit-learn', 'matplotlib',
'biopython', 'pyparsing', 'prody'],
extras_require={
'docs': ['sphinx >= 1.4', 'sphinx_theme', 'sphinx_rtd_theme']
},
include_package_data=True,
description="""Python program, based on ProDy, for pathogenicity prediction
of human missense variants.""",
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/prody/rhapsody',
author='Luca Ponzoni',
author_email='[email protected]',
platforms=['Windows', 'MacOS X', 'POSIX'],
license='GPL',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords='SAV missense variant protein dynamics',
project_urls={
'Bug Reports': 'https://github.com/prody/rhapsody/issues',
'Source': 'https://github.com/prody/rhapsody/',
},
)
'''
After updating VERSION, publish to PyPI with:
$ rm -rf prody_rhapsody.egg-info/ build/ dist/
$ python setup.py sdist bdist_wheel
$ twine check dist/*
$ twine upload dist/*
'''