24465dac20
This commit adds min version to extra libs for graph command. When we introduced a new graph type[1], we noticed that the matplotlib's min version is required to use "style"[2]. However, regarding pandas, I'm not confident with it. But an error occurred in my environment, when I set pandas==0.10. (I suppose it's depends on OS or somethings.) [1] Change-Id: I369717c84df0217a9a0cf17b7f9e975e580ce5a7 [2] http://matplotlib.org/users/whats_new.html#style-package-added Change-Id: Iedb5203fb71ea522454b3f50a923fe8fc1ee1a74
52 lines
1.2 KiB
INI
52 lines
1.2 KiB
INI
[metadata]
|
|
name = subunit2sql
|
|
summary = Command to Read a subunit file or stream and put the data in a SQL DB
|
|
description-file =
|
|
README.rst
|
|
license = Apache License, Version 2.0
|
|
author = Matthew Treinish
|
|
author-email = mtreinish@kortar.org
|
|
classifier =
|
|
Intended Audience :: Developers
|
|
License :: OSI Approved :: Apache Software License
|
|
Operating System :: OS Independent
|
|
Programming Language :: Python
|
|
Programming Language :: Python :: 2
|
|
Programming Language :: Python :: 3
|
|
|
|
|
|
[files]
|
|
packages =
|
|
subunit2sql
|
|
|
|
[global]
|
|
setup-hooks =
|
|
pbr.hooks.setup_hook
|
|
|
|
[entry_points]
|
|
console_scripts =
|
|
subunit2sql = subunit2sql.shell:main
|
|
sql2subunit = subunit2sql.write_subunit:main
|
|
subunit2sql-db-manage = subunit2sql.migrations.cli:main
|
|
subunit2sql-graph = subunit2sql.analysis.graph:main
|
|
oslo.config.opts =
|
|
subunit2sql.shell = subunit2sql.shell:list_opts
|
|
subunit2sql.write_subunit = subunit2sql.write_subunit:list_opts
|
|
subunit2sql.targets:attach_local = subunit2sql.targets.localdir.AttachmentsDir
|
|
|
|
[build_sphinx]
|
|
source-dir = doc/source
|
|
build-dir = doc/build
|
|
all_files = 1
|
|
|
|
[upload_sphinx]
|
|
upload-dir = doc/build/html
|
|
|
|
[wheel]
|
|
universal = 1
|
|
|
|
[extras]
|
|
graph =
|
|
pandas>=0.11
|
|
matplotlib>=1.4
|