13f2676a1f
This repo is now testing only with Python 3, so let's 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 - Cleanup doc/source/conf.py to remove now obsolete content. - Use newer openstackdocstheme version - Remove install_command from tox.ini, the default is fine, update constraints to current URL Change-Id: I45fc7e79bc7abf266721d819f4f857d06a701724
57 lines
1.9 KiB
INI
57 lines
1.9 KiB
INI
[metadata]
|
|
name = vitrage
|
|
summary = The OpenStack RCA Service
|
|
description-file =
|
|
README.rst
|
|
author = OpenStack
|
|
author-email = openstack-discuss@lists.openstack.org
|
|
home-page = https://docs.openstack.org/vitrage/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
|
|
Topic :: System :: Monitoring
|
|
|
|
[entry_points]
|
|
console_scripts =
|
|
vitrage-api = vitrage.cli.api:main
|
|
vitrage-graph = vitrage.cli.graph:main
|
|
vitrage-notifier = vitrage.cli.notifier:main
|
|
vitrage-persistor = vitrage.cli.persistor:main
|
|
vitrage-ml = vitrage.cli.machine_learning:main
|
|
vitrage-dbsync = vitrage.cli.storage:dbsync
|
|
vitrage-dbsync-revision = vitrage.cli.storage:revision
|
|
vitrage-dbsync-stamp = vitrage.cli.storage:stamp
|
|
vitrage-purge-data = vitrage.cli.storage:purge_data
|
|
vitrage-snmp-parsing = vitrage.cli.snmp_parsing:main
|
|
vitrage-status = vitrage.cli.status:main
|
|
|
|
vitrage.entity_graph =
|
|
networkx = vitrage.graph.driver.networkx_graph:NXGraph
|
|
|
|
oslo.config.opts =
|
|
vitrage = vitrage.opts:list_opts
|
|
datasources = vitrage.opts:datasources_opts
|
|
|
|
oslo.policy.policies =
|
|
vitrage = vitrage.common.policies:list_rules
|
|
|
|
vitrage.storage =
|
|
mysql = vitrage.storage.impl_sqlalchemy:Connection
|
|
mysql+pymysql = vitrage.storage.impl_sqlalchemy:Connection
|
|
postgresql = vitrage.storage.impl_sqlalchemy:Connection
|
|
sqlite = vitrage.storage.impl_sqlalchemy:Connection
|
|
|
|
[files]
|
|
packages =
|
|
vitrage
|