277a36dd26
Previously no entry points were defined for the OVB scripts because they were intended to be used directly out of the bin directory. However, because of changes in the way Python 3 handles relative imports we can't continue to do that going forward, so we need to be able to pip install OVB and have callable binaries. This adds entry points for the necessary user-called files, but does not yet update the documentation as the previous method should still work. Once the pip version has been more thoroughly tested the docs will be updated to the new method. Change-Id: I158f58a58314c985baaeb7309cee6f284cb53985
35 lines
985 B
INI
35 lines
985 B
INI
[metadata]
|
|
name = openstack-virtual-baremetal
|
|
summary = A collection of tools for using OpenStack instances to test baremetal deployment
|
|
description-file =
|
|
README.rst
|
|
author = Ben Nemec
|
|
author-email = bnemec@redhat.com
|
|
home-page = http://www.redhat.com/
|
|
classifier =
|
|
Environment :: OpenStack
|
|
Intended Audience :: Information Technology
|
|
Intended Audience :: System Administrators
|
|
License :: OSI Approved :: Apache Software License
|
|
Operating System :: POSIX :: Linux
|
|
Programming Language :: Python
|
|
Programming Language :: Python :: 2
|
|
Programming Language :: Python :: 2.7
|
|
Programming Language :: Python :: 3
|
|
Programming Language :: Python :: 3.4
|
|
|
|
[files]
|
|
packages =
|
|
openstack_virtual_baremetal
|
|
|
|
[entry_points]
|
|
console_scripts =
|
|
ovb-deploy = openstack_virtual_baremetal.deploy:main
|
|
ovb-build-nodes-json = openstack_virtual_baremetal.build_nodes_json:main
|
|
|
|
|
|
[build_sphinx]
|
|
all_files = 1
|
|
build-dir = doc/build
|
|
source-dir = doc/source
|