forked from jazzband/django-push-notifications
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·42 lines (36 loc) · 1.27 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
40
41
42
#!/usr/bin/env python
import os.path
from distutils.core import setup
README = open(os.path.join(os.path.dirname(__file__), "README.rst")).read()
CLASSIFIERS = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Networking",
]
import push_notifications
setup(
name="django-push-notifications",
packages=[
"push_notifications",
"push_notifications/migrations",
"push_notifications/management",
"push_notifications/management/commands",
],
author=push_notifications.__author__,
author_email=push_notifications.__email__,
classifiers=CLASSIFIERS,
description="Send push notifications to mobile devices through GCM or APNS in Django.",
download_url="https://github.com/jleclanche/django-push-notifications/tarball/master",
long_description=README,
url="https://github.com/jleclanche/django-push-notifications",
version=push_notifications.__version__,
)