-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
69 lines (56 loc) · 2 KB
/
Copy pathsetup.py
File metadata and controls
69 lines (56 loc) · 2 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/usr/bin/env python3
from setuptools import find_packages
from setuptools import setup
PROJECT = 'coriolis-metal-hub'
VERSION = '0.1'
long_description = ''
setup(
name=PROJECT,
version=VERSION,
description='Coriolis Metal Hub CLI',
long_description=long_description,
author='Gabriel Adrian Samfira',
author_email='gsamfira@cloudbasesolutions.com',
url='https://github.com/cloudbase/python-coriolismetalhubclient',
download_url='https://github.com/cloudbase/python-coriolismetalhubclient/tarball/main',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Intended Audience :: Developers',
'Environment :: Console',
],
platforms=['Any'],
scripts=[],
provides=[],
install_requires=[
'cliff',
'keystoneauth1',
'requests',
'six',
'urllib3'
],
namespace_packages=[],
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts': [
'coriolis-metal-hub = coriolismetalhub.main:main'
],
'coriolismetalhub.cli': [
'server_list = coriolismetalhub.server:Servers',
'server_show = coriolismetalhub.server:ShowServer',
'server_add = coriolismetalhub.server:CreateServer',
'server_remove = coriolismetalhub.server:RemoveServer',
'server_update = coriolismetalhub.server:UpdateServer',
'server_refresh = coriolismetalhub.server:RefreshServer',
'snapshot_list = coriolismetalhub.snapshots:ListSnapshots',
'snapshot_show = coriolismetalhub.snapshots:ShowSnapshot',
'snapshot_create = coriolismetalhub.snapshots:CreateSnapshot',
'snapshot_delete = coriolismetalhub.snapshots:DeleteSnapshot',
],
},
zip_safe=False,
)