forked from eayunstack/eayunstack-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (40 loc) · 1.4 KB
/
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
33
34
35
36
37
38
39
40
41
42
from setuptools import setup, find_packages
setup(
name="eayunstack-tools",
version="0.0.1",
packages=find_packages(),
author='eayun',
author_email='[email protected]',
description='Command Line Management Tools For EayunStack.',
license='GPLv3',
keywords='EayunStack',
entry_points={
'console_scripts': [
'eayunstack = eayunstack_tools.main:main',
],
'command': [
'doctor = eayunstack_tools.doctor:make',
'fuel = eayunstack_tools.fuel:make',
'manage = eayunstack_tools.manage:make',
'init = eayunstack_tools.init:make',
'list = eayunstack_tools.list:make',
],
'fuel_command': [
'backup = eayunstack_tools.fuel.backup:make',
'restore = eayunstack_tools.fuel.restore:make',
'ceph_cluster_network = '
'eayunstack_tools.fuel.ceph_cluster_network:make'
],
'doctor_command': [
'env = eayunstack_tools.doctor.env:make',
'cls = eayunstack_tools.doctor.cls:make',
'stack = eayunstack_tools.doctor.stack:make',
'all = eayunstack_tools.doctor.all:make',
'net = eayunstack_tools.doctor.net:make',
],
'manage_command': [
'volume = eayunstack_tools.manage.volume:make',
'ami = eayunstack_tools.manage.ami:make',
],
},
)