Browse Source

Add a proper description for the PyPi site

pull/8/head
Luke Murphy 5 years ago
parent
commit
689649c8ae
No known key found for this signature in database GPG Key ID: 5E2EF5A63E3718CC
  1. 2
      etherpump/__init__.py
  2. 4
      setup.py

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

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

Loading…
Cancel
Save