Skip to content

Commit

Permalink
BLD Add README contents as long_description
Browse files Browse the repository at this point in the history
  • Loading branch information
luispedro committed Jun 12, 2020
1 parent e23e11c commit a339c99
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,17 @@
exec(compile(open('gmgc_finder/gmgc_finder_version.py').read(),
'gmgc_finder/gmgc_finder_version.py', 'exec'))


try:
long_description = open('README.md', encoding='utf-8').read()
except:
long_description = open('README.md').read()

setup(name='GMGC-Finder',
version=__version__,
description='map genome to gmgc',
long_description='',
description='Map genes and genome to the Global Microbial Gene Catalog (GMGC)',
long_description = long_description,
long_description_content_type = 'text/markdown',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
Expand Down

0 comments on commit a339c99

Please sign in to comment.