Browse Source
Add a proper description for the PyPi site
pull/8/head
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
2 changed files with
5 additions and
1 deletions
-
etherpump/__init__.py
-
setup.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' |
|
|
|
|
|
@ -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', |
|
|
|