Files
placement/setup.cfg
Andreas Jaeger 0f90d197e1 Cleanup py27 support
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:
  * Wheel is not needed for python 3 only repo
  * Some other sections are obsolete
- Update classifiers

Change-Id: I6f458fb60b5a33b5aa2ce3ab292862ab98eb4670
2020-04-07 17:30:34 +00:00

53 lines
1.8 KiB
INI

[metadata]
name = openstack-placement
summary = Resource provider inventory usage and allocation service
description-file =
README.rst
author = OpenStack
author-email = openstack-discuss@lists.openstack.org
home-page = https://docs.openstack.org/placement/latest/
project_urls =
Bug Tracker = https://storyboard.openstack.org/#!/project/openstack/placement
Documentation = https://docs.openstack.org/placement/latest/
API Reference = https://docs.openstack.org/api-ref/placement/
Source Code = https://opendev.org/openstack/placement
Release Notes = https://docs.openstack.org/releasenotes/placement/
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 =
placement
placement_db_tools
[entry_points]
oslo.config.opts =
placement.conf = placement.conf.opts:list_opts
oslo.policy.enforcer =
placement = placement.policy:get_enforcer
oslo.policy.policies =
# The sample policies will be ordered by entry point and then by list
# returned from that entry point. If more control is desired split out each
# list_rules method into a separate entry point rather than using the
# aggregate method.
placement = placement.policies:list_rules
console_scripts =
placement-manage = placement.cmd.manage:main
placement-status = placement.cmd.status:main
wsgi_scripts =
placement-api = placement.wsgi:init_application