-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v.0.9.2: add dependencies to setup.py, expand installation instructio…
…ns in README, version sync between setup.py and __init__.py, test-1 reorganization
- Loading branch information
Showing
6 changed files
with
79 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0.9.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,34 @@ | ||
"""Python program, based on Prody, for pathogenicity prediction of human missense variants. | ||
See: | ||
https://github.com/prody/rhapsody | ||
"""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 | ||
|
||
here = path.abspath(path.dirname(__file__)) | ||
|
||
with open(path.join(here, '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='0.9.1', | ||
description='Python program, based on ProDy, for pathogenicity prediction of human missense variants.', | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
version=version, | ||
packages=find_packages(exclude=['contrib', 'docs', 'tests']), | ||
python_requires='>=3.5, <4', | ||
install_requires=['requests', 'numpy', 'scikit-learn', | ||
'biopython', 'pyparsing', 'prody'], | ||
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]', | ||
author='Luca Ponzoni', | ||
author_email='[email protected]', | ||
platforms=['Windows', 'MacOS X', 'POSIX'], | ||
license='GPL', | ||
classifiers=[ | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
|
||
'Intended Audience :: End Users/Desktop', | ||
|
@@ -40,13 +45,19 @@ | |
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
], | ||
keywords='SAV missense variant protein dynamics', | ||
packages=find_packages(exclude=['contrib', 'docs', 'tests']), | ||
python_requires='>=3.5, <4', | ||
install_requires=['prody', 'numpy', 'biopython', 'sklearn'], | ||
|
||
project_urls={ | ||
'Bug Reports': 'https://github.com/luponzo86/rhapsody/issues', | ||
keywords='SAV missense variant protein dynamics', | ||
project_urls={ | ||
'Bug Reports': 'https://github.com/prody/rhapsody/issues', | ||
'Source': 'https://github.com/prody/rhapsody/', | ||
}, | ||
) | ||
) | ||
|
||
''' | ||
Publish to PyPI with: | ||
$ rm -rf prody_rhapsody.egg-info/ build/ dist/ | ||
$ python setup.py sdist bdist_wheel | ||
$ twine check dist/* | ||
$ twine upload dist/* | ||
''' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
workspace/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters