#!/usr/bin/env python3 from etherpump import VERSION from setuptools import find_packages, setup with open('README.md', 'r') as handle: long_description = handle.read() setup( name='etherpump', version=VERSION, author='Varia members', author_email='info@varia.zone', packages=find_packages(), zip_safe=False, platforms='any', include_package_data=True, scripts=['bin/etherpump'], 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', 'Environment :: Console', ], )