-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
executable file
·27 lines (24 loc) · 986 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
from setuptools import setup, find_packages
setup(
name = "APNSWrapper",
version = "0.7.2",
packages = find_packages('.'),
classifiers = ["Intended Audience :: Customer Service", "Topic :: Internet" ],
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires = ['docutils>=0.3'],
package_data = {
'': ['*.dat'],
},
# metadata for upload to PyPI
author = "Max Klymyshyn, Sonettic",
author_email = "[email protected]",
description = "This is wrapper for Apple Push Notification Service.",
license = "ALv2",
keywords = "apns push notification service wrapper apple",
url = "http://code.google.com/p/apns-python-wrapper/",
long_description = """
The Wrapper support for Alerts, Badges, Sounds and Custom arguments.
Feedback Service wrapper support for iterations through feedback tuples.
"""
)