forked from openstack-infra/subunit2sql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
51 lines (43 loc) · 1.22 KB
/
setup.cfg
File metadata and controls
51 lines (43 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[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.20.1
matplotlib>=2.0.2