forked from jpush/jpush-api-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (23 loc) · 732 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (23 loc) · 732 Bytes
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
# -*- coding: utf-8 -*-
from setuptools import setup
from jpush import __version__
setup(
name='jpush',
version=__version__,
description='JPush\'s officially supported Python client library',
keywords=('JPush', 'JPush API'),
license='MIT License',
long_description=open("README.rst", "r").read(),
url='https://github.com/jpush/jpush-api-python-client',
author='linbo',
author_email='llbgurs@gmail.com',
packages=['jpush'],
platforms='any',
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)