a4e82b9467
Make a few cleanups: - Remove python 2.7 stanza from setup.py - Add requires on python >= 3.6 to setup.cfg so that pypi and pip know about the requirement - Remove obsolete sections from setup.cfg - Update classifiers - Update requirements, no need for python_version anymore - Use sphinx-build everywhere Change-Id: I737d176d35d3bc55848645af05f0362ab3853844
53 lines
1.5 KiB
INI
53 lines
1.5 KiB
INI
[metadata]
|
|
name = virtualbmc
|
|
summary = Create virtual BMCs for controlling virtual instances via IPMI
|
|
description-file =
|
|
README.rst
|
|
author = OpenStack
|
|
author-email = openstack-discuss@lists.openstack.org
|
|
home-page = https://docs.openstack.org/virtualbmc/latest/
|
|
python-requires = >=3.6
|
|
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 :: Implementation :: CPython
|
|
Programming Language :: Python :: 3 :: Only
|
|
Programming Language :: Python :: 3
|
|
Programming Language :: Python :: 3.6
|
|
Programming Language :: Python :: 3.7
|
|
|
|
[files]
|
|
packages =
|
|
virtualbmc
|
|
|
|
[entry_points]
|
|
console_scripts =
|
|
vbmc = virtualbmc.cmd.vbmc:main
|
|
vbmcd = virtualbmc.cmd.vbmcd:main
|
|
|
|
virtualbmc =
|
|
add = virtualbmc.cmd.vbmc:AddCommand
|
|
delete = virtualbmc.cmd.vbmc:DeleteCommand
|
|
start = virtualbmc.cmd.vbmc:StartCommand
|
|
stop = virtualbmc.cmd.vbmc:StopCommand
|
|
list = virtualbmc.cmd.vbmc:ListCommand
|
|
show = virtualbmc.cmd.vbmc:ShowCommand
|
|
|
|
[compile_catalog]
|
|
directory = virtualbmc/locale
|
|
domain = virtualbmc
|
|
|
|
[update_catalog]
|
|
domain = virtualbmc
|
|
output_dir = virtualbmc/locale
|
|
input_file = virtualbmc/locale/virtualbmc.pot
|
|
|
|
[extract_messages]
|
|
keywords = _ gettext ngettext l_ lazy_gettext
|
|
mapping_file = babel.cfg
|
|
output_file = virtualbmc/locale/virtualbmc.pot
|