forked from jpush/jpush-api-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (32 loc) · 1.01 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
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except (ImportError):
from distutils.core import setup
from jpush import __version__
setup(
name='jpush',
version=__version__,
description='JPush\'s officially supported Python client library',
keywords=('JPush', 'JPush API', 'Android Push', 'iOS Push',
'JMessage', 'JMessage API', 'Android IM', 'iOS IM'
),
license='MIT License',
long_description=open("README.rst", "r").read(),
url='https://github.com/jpush/jpush-api-python-client',
author='jpush',
author_email='[email protected]',
packages=['jpush', 'jpush.push', 'jpush.device', 'jmessage', 'jmessage.core'],
platforms='any',
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
install_requires=[
'requests>=1.2',
'pycurl>=7.19.5',
],
)