setup: Add long_description, based on README
(cherry picked from commit 28ea0067c6
)
This commit is contained in:
parent
917a38dce0
commit
c547eb93eb
10
setup.py
10
setup.py
|
@ -40,10 +40,20 @@ def grep_version():
|
|||
return '.'.join(map(str, eval(s)))
|
||||
|
||||
|
||||
def long_description():
|
||||
here = os.path.dirname(__file__)
|
||||
readme_path = os.path.join(here, 'README.md')
|
||||
with open(readme_path) as fp:
|
||||
readme = fp.read()
|
||||
return readme
|
||||
|
||||
|
||||
setup(
|
||||
name = 'mitogen',
|
||||
version = grep_version(),
|
||||
description = 'Library for writing distributed self-replicating programs.',
|
||||
long_description = long_description(),
|
||||
long_description_content_type='text/markdown',
|
||||
author = 'David Wilson',
|
||||
license = 'New BSD',
|
||||
url = 'https://github.com/mitogen-hq/mitogen/',
|
||||
|
|
Loading…
Reference in New Issue