Skip to content

Commit

Permalink
Added setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
SHZ66 committed May 21, 2019
1 parent 59da375 commit 3ed0da1
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
"""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, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setup(
name='rhapsody',
version='1.0.0',
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]',
classifiers=[
'Development Status :: 4 - Beta',

'Intended Audience :: Biologists',
'Topic :: Genetics :: SAV Identification',
'License :: OSI Approved :: MIT License',

'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'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='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4',
install_requires=['prody', 'numpy', 'biopython'],

project_urls={
'Bug Reports': 'https://github.com/luponzo86/rhapsody/issues',
'Source': 'https://github.com/prody/rhapsody/',
},
)

0 comments on commit 3ed0da1

Please sign in to comment.