From 689649c8ae7266be081a655f58eba9c81be58c56 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Wed, 25 Sep 2019 21:49:33 +0200 Subject: [PATCH] Add a proper description for the PyPi site --- etherpump/__init__.py | 2 +- setup.py | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/etherpump/__init__.py b/etherpump/__init__.py index 459974c..c75943e 100644 --- a/etherpump/__init__.py +++ b/etherpump/__init__.py @@ -1,4 +1,4 @@ import os DATAPATH = os.path.join(os.path.dirname(os.path.realpath(__file__)), "data") -VERSION = '0.0.1' +VERSION = '0.0.2' diff --git a/setup.py b/setup.py index 92f8077..c9bf0b6 100644 --- a/setup.py +++ b/setup.py @@ -3,6 +3,8 @@ from etherpump import VERSION from setuptools import find_packages, setup +with open('README.md', 'r') as handle: + long_description = handle.read() setup( name='etherpump', @@ -17,6 +19,8 @@ setup( url='https://git.vvvvvvaria.org/varia/etherpump', license='GPLv3', description='Etherpump: pumping text from etherpads into publications', + long_description=long_description, + long_description_content_type='text/markdown', install_requires=["html5lib", "jinja2"], classifiers=[ 'Programming Language :: Python :: 3',