forked from bogdal/django-gcm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (39 loc) · 1.14 KB
/
setup.py
File metadata and controls
40 lines (39 loc) · 1.14 KB
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
# ~*~ 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',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules'],
zip_safe=False,
install_requires=[
'django>=1.6',
'django-tastypie>=0.10.0',
'pytz>=2013.8',
'requests>=1.2.0',
],
extras_require={
'dev': [
'mock>=1.0.1',
'coverage'
]
}
)