-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.cfg
52 lines (47 loc) · 1.38 KB
/
setup.cfg
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
[metadata]
name = CloudFerry
author = Mirantis Inc.
author-email = [email protected]
summary = Openstack cloud workload migration tool
description-file =
README.md
home-page = https://github.com/Mirantis/CloudFerry
license = Apache-2
classifier =
Development Status :: 4 - Beta
Environment :: Console
Environment :: OpenStack
Intended Audience :: Developers
Intended Audience :: Information Technology
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
[files]
packages =
cloudferry
[entry_points]
console_scripts =
cloudferry = cloudferry.cli.shell:main
oslo.config.opts =
cloudferry = cloudferry.cfglib:list_opts
cloudferry =
migrate = cloudferry.cli.v1.commands:Migrate
mark-volumes-as-deleted = cloudferry.cli.v1.commands:MarkVolumesAsDeleted
migrate2 = cloudferry.cli.v2.commands:Migrate
discover = cloudferry.cli.v2.commands:Discover
link = cloudferry.cli.v2.commands:Link
estimate-migration = cloudferry.cli.v2.commands:EstimateMigration
show-objects = cloudferry.cli.v2.commands:ShowObjects
query = cloudferry.cli.v2.commands:Query
# Nosetest configuration
[nosetests]
verbosity=3
with-xunit=1
# Sphinx configuration
[build_sphinx]
source-dir = docs
build-dir = sphinx-build
all_files = 1
[global]
setup-hooks =
pbr.hooks.setup_hook