PyPI is enforcing to not have syntax errors in package
descriptors. The README file is used as project's description.
According to the official documentation[1], PyPI supports three
different formats (plain text, reStructureText and Markdown).
This change changes the format of the README file to Markdown and
reports syntax errors in documentation. These errors need to be
fixed before a new release can be done.
[1] https://packaging.python.org/guides/making-a-pypi-friendly-readme/
Change-Id: Ia96882528df8a371cc8a89a7d9d74233c4d1b1de
Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com>
(cherry picked from commit a60ef68c25)
73 lines
2.4 KiB
INI
73 lines
2.4 KiB
INI
[metadata]
|
|
name = tricircleclient
|
|
summary = Python client library for Tricircle
|
|
description-file =
|
|
README.md
|
|
author = OpenStack
|
|
author-email = openstack-dev@lists.openstack.org
|
|
home-page = https://docs.openstack.org/python-tricircleclient/latest/
|
|
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.5
|
|
|
|
[files]
|
|
packages =
|
|
tricircleclient
|
|
|
|
[entry_points]
|
|
openstack.cli.extension =
|
|
multiregion_networking = tricircleclient.osc
|
|
|
|
openstack.multiregion_networking.v1 =
|
|
multiregion_networking_pod_list = tricircleclient.v1.pods_cli:ListPods
|
|
multiregion_networking_pod_create = tricircleclient.v1.pods_cli:CreatePod
|
|
multiregion_networking_pod_show = tricircleclient.v1.pods_cli:ShowPod
|
|
multiregion_networking_pod_delete = tricircleclient.v1.pods_cli:DeletePod
|
|
multiregion_networking_routing_list = tricircleclient.v1.routings_cli:ListRoutings
|
|
multiregion_networking_routing_create = tricircleclient.v1.routings_cli:CreateRouting
|
|
multiregion_networking_routing_show = tricircleclient.v1.routings_cli:ShowRouting
|
|
multiregion_networking_routing_delete = tricircleclient.v1.routings_cli:DeleteRouting
|
|
multiregion_networking_routing_update = tricircleclient.v1.routings_cli:UpdateRouting
|
|
multiregion_networking_job_list = tricircleclient.v1.jobs_cli:ListJobs
|
|
multiregion_networking_job_create = tricircleclient.v1.jobs_cli:CreateJob
|
|
multiregion_networking_job_show = tricircleclient.v1.jobs_cli:ShowJob
|
|
multiregion_networking_job_delete = tricircleclient.v1.jobs_cli:DeleteJob
|
|
multiregion_networking_job_redo = tricircleclient.v1.jobs_cli:RedoJob
|
|
|
|
|
|
[extras]
|
|
test =
|
|
coverage!=4.4,>=4.0 # Apache-2.0
|
|
python-subunit>=1.0.0 # Apache-2.0/BSD
|
|
oslotest>=3.2.0 # Apache-2.0
|
|
tempest>=17.1.0 # Apache-2.0
|
|
testrepository>=0.0.18 # Apache-2.0/BSD
|
|
testtools>=2.2.0 # MIT
|
|
doc =
|
|
sphinx!=1.6.6,>=1.6.2 # BSD
|
|
oslosphinx>=4.7.0 # Apache-2.0
|
|
|
|
[build_sphinx]
|
|
source-dir = doc/source
|
|
build-dir = doc/build
|
|
all_files = 1
|
|
|
|
[upload_sphinx]
|
|
upload-dir = doc/build/html
|
|
|
|
[pbr]
|
|
autodoc_index_modules = true
|
|
autodoc_exclude_modules =
|
|
tricircleclient.tests.*
|
|
|
|
[wheel]
|
|
universal = 1
|