diff --git a/setup.py b/setup.py index 2f96788..7560a93 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ here = path.abspath(path.dirname(__file__)) # Get the long description from the relevant file -with open(path.join(here, 'DESCRIPTION.rst'), encoding='utf-8') as f: +with open(path.join(here, 'README.rst')) as f: long_description = f.read() setup( @@ -40,7 +40,7 @@ # Choose your license - license='GNU General Public License (GPL)', + license='License :: OSI Approved :: GNU General Public License (GPL)', # See https://pypi.python.org/pypi?%3Aaction=list_classifiers classifiers=[ @@ -51,11 +51,11 @@ 'Development Status :: 5 - Production/Stable', # Indicate who your project is intended for - 'Intended Audience :: Researchers', - 'Topic :: Software Development :: Build Tools', + 'Intended Audience :: Science/Research', + 'Topic :: Scientific/Engineering :: Bio-Informatics', # Pick your license as you wish (should match "license" above) - 'License :: GNU General Public License (GPL)', + 'License :: OSI Approved :: GNU General Public License (GPL)', # Specify the Python versions you support here. In particular, ensure # that you indicate whether you support Python 2, Python 3 or both. @@ -65,7 +65,7 @@ # 'Programming Language :: Python :: 3', # 'Programming Language :: Python :: 3.2', # 'Programming Language :: Python :: 3.3', - 'Programming Language :: Python :: 3.4', + # 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', @@ -130,5 +130,12 @@ }, scripts=[ 'scripts/DCC', - ] + ], + + project_urls={ # Optional + 'Bug Reports': 'https://github.com/dieterich-lab/DCC/issues', + 'Dieterich Lab': 'https://dieterichlab.org', + 'Source': 'https://github.com/dieterich-lab/DCC', + 'Documentation': 'http://docs.circ.tools' +}, )