Skip to content

Commit

Permalink
Update setup.py to set long description for PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
standage committed Nov 16, 2018
1 parent 121cb60 commit 9f51024
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,16 @@
'matplotlib>=2.2'
]

desc = 'Reference-free variant discovery scalable to large eukaryotic genomes'
with open('README.md', 'r') as infile:
longdesc = infile.read()

setup(name='biokevlar',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description=('Reference-free variant discovery scalable to large '
'eukaryotic genomes'),
description=desc,
long_description=longdesc,
long_description_content_type='text/markdown',
url='https://github.com/dib-lab/kevlar',
author='Daniel Standage',
author_email='daniel.standage@gmail.com',
Expand Down

0 comments on commit 9f51024

Please sign in to comment.