-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 994 Bytes
/
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
import os.path
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='apns-client',
version='0.2.1',
author='Sardar Yumatov',
author_email='[email protected]',
url='https://bitbucket.org/sardarnl/apns-client',
description='Python client for Apple Push Notification service (APNs)',
long_description=read('README.rst'),
packages=['apnsclient', 'apnsclient.backends'],
license="Apache 2.0",
keywords='apns push notification apple messaging iOS',
install_requires=['pyOpenSSL', 'six'],
classifiers = [ 'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules']
)