-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
39 lines (33 loc) · 1.05 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
"""A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
"""
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name='pushpad',
version='1.0.0',
description='Pushpad: real push notifications for websites',
url='https://pushpad.xyz',
author='Pushpad',
author_email='[email protected]',
license='MIT',
classifiers=[
'Intended Audience :: Developers',
"Topic :: Software Development :: Libraries",
'License :: OSI Approved :: MIT License',
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
],
keywords='pushpad web push notifications api',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
install_requires=['requests'],
tests_require=['mock', 'nose'],
test_suite='nose.collector',
extras_require={
'dev': ['check-manifest'],
'test': ['coverage'],
},
)