-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (28 loc) · 686 Bytes
/
setup.py
File metadata and controls
33 lines (28 loc) · 686 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
30
31
32
33
# encoding: utf-8
"""
pyapollo 常用工具包
"""
from setuptools import setup, find_packages
import pyapollo
SHORT=u'pyapollo'
setup(
name='pyapollo',
version=pyapollo.__version__,
packages=find_packages(),
install_requires=[
'requests'
],
url='https://code.aliyun.com/cashbusrisk/pyapollo',
author=pyapollo.__author__,
author_email='filamoon@gmail.com',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
],
include_package_data=True,
package_data={'': ['*.py','*.pyc']},
zip_safe=False,
platforms='any',
description=SHORT,
long_description=__doc__,
)