-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
37 lines (33 loc) · 1.14 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
#!/usr/bin/env python
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
__author__ = 'Max Arnold <[email protected]>'
__version__ = '0.1.6'
setup(
name='python-mpns',
version=__version__,
# Package dependencies.
install_requires=['requests>=2.0'],
# Metadata for PyPI.
author='Max Arnold',
author_email='[email protected]',
license='BSD',
url='http://github.com/max-arnold/python-mpns',
keywords='mobile push notification microsoft mpns windows phone',
description='Python module for Microsoft Push Notification Service (MPNS) for Windows Phone',
long_description=open(os.path.abspath(os.path.join(os.path.dirname(__file__), 'README.md')), 'r').read(),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Communications :: Telephony',
'Topic :: Internet'
],
packages=['mpns'],
platforms='any',
)