2014-06-08 15:43:06 -04:00
|
|
|
[metadata]
|
|
|
|
name = subunit2sql
|
2014-06-24 15:44:00 -04:00
|
|
|
summary = Command to Read a subunit file or stream and put the data in a SQL DB
|
2014-06-08 15:43:06 -04:00
|
|
|
description-file =
|
|
|
|
README.rst
|
|
|
|
license = Apache License, Version 2.0
|
|
|
|
author = Matthew Treinish
|
2014-06-24 15:44:00 -04:00
|
|
|
author-email = mtreinish@kortar.org
|
2014-06-08 15:43:06 -04:00
|
|
|
classifier =
|
|
|
|
Intended Audience :: Developers
|
|
|
|
License :: OSI Approved :: Apache Software License
|
|
|
|
Operating System :: OS Independent
|
|
|
|
Programming Language :: Python
|
2015-03-26 09:41:49 -05:00
|
|
|
Programming Language :: Python :: 2
|
2014-06-24 15:44:00 -04:00
|
|
|
Programming Language :: Python :: 3
|
|
|
|
|
2014-06-08 15:43:06 -04:00
|
|
|
|
|
|
|
[files]
|
|
|
|
packages =
|
|
|
|
subunit2sql
|
|
|
|
|
2014-09-30 14:21:15 -04:00
|
|
|
[global]
|
|
|
|
setup-hooks =
|
|
|
|
pbr.hooks.setup_hook
|
|
|
|
|
2014-06-08 15:43:06 -04:00
|
|
|
[entry_points]
|
|
|
|
console_scripts =
|
|
|
|
subunit2sql = subunit2sql.shell:main
|
2014-08-02 09:07:01 -04:00
|
|
|
sql2subunit = subunit2sql.write_subunit:main
|
2014-09-02 13:44:00 -04:00
|
|
|
subunit2sql-db-manage = subunit2sql.migrations.cli:main
|
2015-04-21 18:36:11 -04:00
|
|
|
subunit2sql-graph = subunit2sql.analysis.graph:main
|
2014-09-29 18:56:46 +00:00
|
|
|
oslo.config.opts =
|
|
|
|
subunit2sql.shell = subunit2sql.shell:list_opts
|
|
|
|
subunit2sql.write_subunit = subunit2sql.write_subunit:list_opts
|
2015-11-10 15:22:20 -08:00
|
|
|
subunit2sql.targets:attach_local = subunit2sql.targets.localdir.AttachmentsDir
|
2014-06-08 15:43:06 -04:00
|
|
|
|
|
|
|
[build_sphinx]
|
|
|
|
source-dir = doc/source
|
|
|
|
build-dir = doc/build
|
|
|
|
all_files = 1
|
2017-06-24 23:09:50 +08:00
|
|
|
warning-is-error = 1
|
2014-06-08 15:43:06 -04:00
|
|
|
|
|
|
|
[upload_sphinx]
|
|
|
|
upload-dir = doc/build/html
|
|
|
|
|
|
|
|
[wheel]
|
|
|
|
universal = 1
|
2015-05-19 12:04:43 -04:00
|
|
|
|
|
|
|
[extras]
|
|
|
|
graph =
|
2017-05-23 11:44:51 -04:00
|
|
|
pandas>=0.20.1
|
|
|
|
matplotlib>=2.0.2
|