forked from amyth/django-instapush
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (22 loc) · 766 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
# _*_ 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='[email protected]',
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'
]
)