forked from meituan/mcsapi_python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 839 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 839 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
import setuptools
from mosclient.common import setuputils
requires = setuputils.parse_requirements()
setuptools.setup(
name="python-mosclient",
version='1.0.4',
description="Client library for Meituan Cloud Platform EC2 API",
url='https://mos.meituan.com/docs/index.html',
author='Meituan Open Services',
packages=setuptools.find_packages(exclude=['tests', 'tests.*']),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
install_requires=requires,
entry_points={
'console_scripts': ['climos = mosclient.shell:main']
}
)