pypi_packages: Use README files for long descriptions.

This commit is contained in:
Eeshan Garg 2020-04-16 22:04:03 -02:30 committed by Tim Abbott
parent c55bf78c6b
commit dd201926fa
3 changed files with 15 additions and 0 deletions

View file

@ -7,11 +7,16 @@ if False:
ZULIP_BOTSERVER_VERSION = "0.6.4"
with open("README.md", "r") as fh:
long_description = fh.read()
# We should be installable with either setuptools or distutils.
package_info = dict(
name='zulip_botserver',
version=ZULIP_BOTSERVER_VERSION,
description='Zulip\'s Flask server for running bots',
long_description=long_description,
long_description_content_type="text/markdown",
author='Zulip Open Source Project',
author_email='zulip-devel@googlegroups.com',
classifiers=[