-
Notifications
You must be signed in to change notification settings - Fork 73
/
setup.cfg
84 lines (72 loc) · 1.91 KB
/
setup.cfg
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[metadata]
name = lcov_cobertura
version = attr: lcov_cobertura.lcov_cobertura.__version__
author = Eric Wendelin
author_email = [email protected]
maintainer = Steve Arnold
maintainer_email = [email protected]
description = LCOV to Cobertura XML converter
long_description = file: README.md
long_description_content_type = text/markdown
url = https://eriwen.github.io/lcov-to-cobertura-xml/
download_url = https://raw.githubusercontent.com/eriwen/lcov-to-cobertura-xml/master/lcov_cobertura/lcov_cobertura.py
license = Apache License, Version 2.0
classifiers =
Programming Language :: Python
Intended Audience :: Developers
Natural Language :: English
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Topic :: Software Development :: Testing
Topic :: Software Development :: Quality Assurance
Development Status :: 5 - Production/Stable
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
keywords =
lcov
cobertura
[options]
python_requires = >=3.6
install_requires =
py_modules = lcov_cobertura/lcov_cobertura
[options.entry_points]
console_scripts =
lcov_cobertura = lcov_cobertura.lcov_cobertura:main
# deps are included here mainly for local/venv installs using pip
# otherwise deps are handled via tox, ci config files or pkg managers
[options.extras_require]
doc =
sphinx
recommonmark
sphinx_rtd_theme
sphinxcontrib-apidoc
test =
pytest
xmldiff
cov =
pytest-cov
coverage[toml]
all =
%(cov)s
%(doc)s
%(test)s
[check]
metadata = true
restructuredtext = true
strict = false
[check-manifest]
ignore =
.gitattributes
.gitignore
.pre-commit-config.yaml
[flake8]
exclude =
.git,
__pycache__,
build,
dist
test
max-line-length = 107