Skip to content

Commit

Permalink
Update long description for twine
Browse files Browse the repository at this point in the history
  • Loading branch information
sterrettJD authored Mar 14, 2023
1 parent 5e068b2 commit 0668d05
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
from setuptools import setup, find_packages
from KEGG_parser import __version__ as version
from pathlib import Path

this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()

__author__ = 'lozuponelab'
__version__ = version
Expand All @@ -12,7 +16,8 @@
install_requires=['aiohttp'],
packages=find_packages(),
description="KEGG Parser: A tool for parsing and converting KEGG data into manipulable Python objects.",
long_description_content_type='text/markdown',
long_description=long_description,
long_description_content_type='text/markdown'
author="Kumar Thurimella",
author_email='[email protected]',
url="https://github.com/lozuponelab/KEGG_parser/",
Expand Down

0 comments on commit 0668d05

Please sign in to comment.