Skip to content

Commit

Permalink
Add a long description in setup.py (displayed on PyPI)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelm committed Sep 21, 2016
1 parent 32ac59c commit 24d8970
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -33,7 +33,7 @@ If you use cutadapt, please cite
Links
-----

* `Documentation <https://cutadapt.readthedocs.org/>`_
* `Documentation <https://cutadapt.readthedocs.io/>`_
* `Source code <https://github.com/marcelm/cutadapt/>`_
* `Report an issue <https://github.com/marcelm/cutadapt/issues>`_
* `Project page on PyPI (Python package index) <https://pypi.python.org/pypi/cutadapt/>`_
Expand Down
4 changes: 4 additions & 0 deletions setup.py
Expand Up @@ -116,13 +116,17 @@ def run(self):
cmdclass['build_ext'] = build_ext
cmdclass['sdist'] = sdist

with open('README.rst') as f:
long_description = f.read()

setup(
name = 'cutadapt',
version = versioneer.get_version(),
author = 'Marcel Martin',
author_email = 'marcel.martin@scilifelab.se',
url = 'https://cutadapt.readthedocs.io/',
description = 'trim adapters from high-throughput sequencing reads',
long_description = long_description,
license = 'MIT',
cmdclass = cmdclass,
ext_modules = extensions,
Expand Down

0 comments on commit 24d8970

Please sign in to comment.