forked from jazzband/django-push-notifications
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·32 lines (27 loc) · 967 Bytes
/
setup.py
File metadata and controls
executable file
·32 lines (27 loc) · 967 Bytes
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
#!/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 :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Networking",
]
VERSION = "0.8"
setup(
name = "django-push-notifications",
packages = ["push_notifications"],
author = "Jerome Leclanche",
author_email = "jerome.leclanche+pypi@gmail.com",
classifiers = CLASSIFIERS,
description = "Send push notifications to mobile devices through GCM or APNS in Django.",
download_url = "https://github.com/Adys/django-push-notifications/tarball/master",
long_description = README,
url = "https://github.com/Adys/django-push-notifications",
version = VERSION,
)