We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 917a38d commit c547eb9Copy full SHA for c547eb9
setup.py
@@ -40,10 +40,20 @@ def grep_version():
40
return '.'.join(map(str, eval(s)))
41
42
43
+def long_description():
44
+ here = os.path.dirname(__file__)
45
+ readme_path = os.path.join(here, 'README.md')
46
+ with open(readme_path) as fp:
47
+ readme = fp.read()
48
+ return readme
49
+
50
51
setup(
52
name = 'mitogen',
53
version = grep_version(),
54
description = 'Library for writing distributed self-replicating programs.',
55
+ long_description = long_description(),
56
+ long_description_content_type='text/markdown',
57
author = 'David Wilson',
58
license = 'New BSD',
59
url = 'https://github.com/mitogen-hq/mitogen/',
0 commit comments