You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
651 B
25 lines
651 B
#!/usr/bin/env python3
|
|
|
|
from etherpump import VERSION
|
|
from setuptools import find_packages, setup
|
|
|
|
|
|
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',
|
|
install_requires=["html5lib", "jinja2"],
|
|
classifiers=[
|
|
'Programming Language :: Python :: 3',
|
|
'Environment :: Console',
|
|
],
|
|
)
|
|
|