Add a proper description for the PyPi site

This commit is contained in:
Luke Murphy 2019-09-25 21:49:33 +02:00
parent 5471eabbfd
commit 689649c8ae
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
2 changed files with 5 additions and 1 deletions

View File

@ -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'

View File

@ -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',