debian-pywebpush/setup.py

38 lines
1.1 KiB
Python

import io
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(here, 'README.md'), encoding='utf8') as f:
README = f.read()
with io.open(os.path.join(here, 'CHANGELOG.md'), encoding='utf8') as f:
CHANGES = f.read()
extra_options = {
"packages": ["http-ece==0.5.0"]
}
setup(name="Webpusher",
version="0.1",
description='Webpush publication library',
long_description=README + '\n\n' + CHANGES,
classifiers=["Topic :: Internet :: WWW/HTTP",
"Programming Language :: Python :: Implementation :: PyPy",
'Programming Language :: Python',
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7"
],
keywords='push webpush publication',
author="jr conlin",
author_email="src+webpusher@jrconlin.com",
url='http:///',
license="MPL2",
test_suite="nose.collector",
include_package_data=True,
zip_safe=False,
tests_require=['nose', 'coverage', 'mock>=1.0.1', 'moto>=0.4.1'],
**extra_options
)