diff --git a/setup.py b/setup.py index b4ecc14a..ae300907 100755 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/python3 from setuptools import setup, find_packages # Package meta-data, mostly from the package -from kibot import __author__, __email__, __url__, __doc__, __version__, __pypi_deps__ +from kibot import __author__, __email__, __url__, __version__, __pypi_deps__ # Use the README.md as a long description. # Note this is also included in the MANIFEST.in @@ -10,8 +10,7 @@ with open('README.md', encoding='utf-8') as f: setup(name='kibot', version=__version__, - # docopt style: the text after ": " from the first line of the docstring - description=__doc__.split('\n')[0].split(': ')[1], + description='KiCad automation tool for documents generation', long_description=long_description, long_description_content_type='text/markdown', author=__author__,