forked from cruncher/django-gcm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
46 lines (45 loc) · 1.45 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
43
44
45
46
# ~*~ coding: utf-8 ~*~
from setuptools import setup, find_packages
from gcm import VERSION
setup(
name='django-gcm',
version=VERSION,
description='Google Cloud Messaging Server',
long_description=open('README.rst').read(),
author='Adam Bogdał',
author_email='adam@bogdal.pl',
url='https://github.com/bogdal/django-gcm',
packages=find_packages(),
package_data={
'gcm': ['locale/*/LC_MESSAGES/*']
},
include_package_data=True,
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules'],
zip_safe=False,
install_requires=[
'django>=1.7',
'django-tastypie>=0.12.3a0',
'pytz>=2013.8',
'requests>=1.2.0',
],
dependency_links=[
'https://github.com/django-tastypie/django-tastypie/tarball/f0d07abd12432df7c77f9527f5d3d211e7a68797#egg=django-tastypie-0.12.3a0',
],
extras_require={
'dev': [
'mock==1.3.0',
'coverage'
]
}
)