pypi_packages: Use README files for long descriptions.
This commit is contained in:
parent
c55bf78c6b
commit
dd201926fa
3 changed files with 15 additions and 0 deletions
|
@ -9,6 +9,9 @@ import sys
|
|||
|
||||
import itertools
|
||||
|
||||
with open("README.md", "r") as fh:
|
||||
long_description = fh.read()
|
||||
|
||||
def version():
|
||||
# type: () -> str
|
||||
version_py = os.path.join(os.path.dirname(__file__), "zulip", "__init__.py")
|
||||
|
@ -30,6 +33,8 @@ package_info = dict(
|
|||
name='zulip',
|
||||
version=version(),
|
||||
description='Bindings for the Zulip message API',
|
||||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
author='Zulip Open Source Project',
|
||||
author_email='zulip-devel@googlegroups.com',
|
||||
classifiers=[
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue