forked from amyth/django-instapush
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 766 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# _*_ coding: utf-8 _*_
from distutils.core import setup
from setuptools import find_packages
setup(
name='django-instapush',
version='1.0.3',
author='Amyth Arora',
author_email='mail@amythsingh.com',
packages=find_packages(),
url='https://github.com/amyth/django-instapush',
license='MIT License',
description='Send push notifications to android and ios devices',
long_description='Django Instapush can be used to send GCM and APNS '\
'notifications to android and ios devices respectively. This '\
'package supports both mysql and mongoengine models to store '\
'device data',
zip_safe=False,
install_requires=[
'requests>=2.8.1',
'requests-toolbelt>=0.4.0'
]
)