forked from filamoon/pyapollo
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathsetup.py
32 lines (28 loc) · 770 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
24
25
26
27
28
29
30
31
32
# encoding: utf-8
from setuptools import setup, find_packages
SHORT = "a client for apollo 2.0, it's been reformatted!"
__version__ = "2.1.2"
__author__ = 'Lin Luo / Bruce Liu'
__email__ = '[email protected]'
readme_path = 'README.md'
setup(
name='apollo-client',
version=__version__,
packages=find_packages(),
install_requires=[
'requests'
],
url='',
author=__author__,
author_email=__email__,
classifiers=[
'Programming Language :: Python :: 3.5',
],
include_package_data=True,
package_data={'': ['*.py', '*.pyc']},
zip_safe=False,
platforms='any',
description=SHORT,
long_description=open(readme_path, encoding='utf-8').read(),
long_description_content_type='text/markdown',
)