-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
30 lines (26 loc) · 912 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
import setuptools
import yunionclient
from yunionclient.openstack.common import setup
requires = setup.parse_requirements()
setuptools.setup(
name="python-yunionclient",
version=yunionclient.__version__,
description="Client library for Yunion Cloud API",
url='http://wiki.yunionyun.com/pages/viewpage.action?pageId=48989444',
author='Yunion Technology',
author_email='[email protected]',
packages=setuptools.find_packages(exclude=['tests', 'tests.*']),
data_files=[],
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': ['climc = yunionclient.shell:main']
}
)