setup: Add long_description, based on README
This commit is contained in:
parent
a6387f69a8
commit
28ea0067c6
10
setup.py
10
setup.py
|
@ -40,10 +40,20 @@ def grep_version():
|
||||||
return '.'.join(map(str, eval(s)))
|
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(
|
setup(
|
||||||
name = 'mitogen',
|
name = 'mitogen',
|
||||||
version = grep_version(),
|
version = grep_version(),
|
||||||
description = 'Library for writing distributed self-replicating programs.',
|
description = 'Library for writing distributed self-replicating programs.',
|
||||||
|
long_description = long_description(),
|
||||||
|
long_description_content_type='text/markdown',
|
||||||
author = 'David Wilson',
|
author = 'David Wilson',
|
||||||
license = 'New BSD',
|
license = 'New BSD',
|
||||||
url = 'https://github.com/mitogen-hq/mitogen/',
|
url = 'https://github.com/mitogen-hq/mitogen/',
|
||||||
|
|
Loading…
Reference in New Issue