Skip to content

Commit

Permalink
Updating setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tjakobi committed Aug 12, 2020
1 parent 864f93c commit 07192e7
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -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=[
Expand All @@ -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.
Expand All @@ -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',
Expand Down Expand Up @@ -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'
},
)

0 comments on commit 07192e7

Please sign in to comment.