This repository was archived by the owner on Aug 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
126 lines (108 loc) · 2.7 KB
/
setup.cfg
File metadata and controls
126 lines (108 loc) · 2.7 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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
[bumpversion]
current_version = 0.2.1
commit = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(.(?P<build>\w?\d+))?
serialize =
{major}.{minor}.{patch}.{build}
{major}.{minor}.{patch}
tag = False
[aliases]
test = pytest
[bumpversion:file:setup.cfg]
[bumpversion:file:setup.py]
[bumpversion:file:VERSION]
[bumpversion:file:infopen_pre_commit_hooks/__init__.py]
[coverage:run]
branch = True
source = .
omit =
.eggs/*
.tox/*
setup.py
[coverage:report]
fail_under = 100
show_missing = True
skip_covered = True
exclude_lines =
\#\s*pragma: no cover
^\s*raise AssertionError\b
^\s*raise NotImplementedError\b
^\s*return NotImplemented\b
^\s*raise$
^if __name__ == ['"]__main__['"]:$
[coverage:html]
directory = reports/coverage-html
[doc]
source-dir = docs/
build-dir = docs/_build
all_files = 1
[metadata]
name = infopen_pre_commit_hooks
description = Infopen out-of-the-box hooks for pre-commit.
long_description = file: README.rst, CHANGELOG.rst, LICENSE
author = Alexandre Chaussier
author_email = a.chaussier@infopen.pro
keywords = Infopen
license = MIT license
url = https://github.com/infOpen/pre-commit-hooks
classifiers =
License :: OSI Approved :: MIT license
Development Status :: 4 - Beta
Intended Audience :: Developers
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Topic :: Software Development :: Libraries :: Python Modules
Topic :: System :: Archiving :: Packaging
[options]
zip_safe = False
packages = find:
include_package_data = True
install_requires =
restructuredtext_lint==1.3.1
six==1.15.0
setup_requires =
bump2version==1.0.0
gitchangelog==3.0.4
pre-commit==2.6.0
pre-commit-hooks==3.1.0
setuptools==49.2.0
Sphinx==3.1.2
pytest-runner==5.2.0
tests_require =
coverage==5.2
pytest==5.4.3
pytest-cov==2.10.0
pytest-pylint==0.17.0
tox==3.17.1
[options.entry_points]
console_scripts =
check-rst = infopen_pre_commit_hooks.check_rst:check_rst
check-git-commit-message = infopen_pre_commit_hooks.check_git_commit_message:check_git_commit_message
[options.package_data]
[options.packages.find]
exclude =
tests*
testing*
[tool:pytest]
addopts =
--doctest-modules
--cov=infopen_pre_commit_hooks
--cov-report html:reports/coverage-html
--cov-report term
--cov-report xml:reports/coverage.xml
--junit-xml=reports/junit.xml
--pylint
--verbose
--verbose
--verbose
ignore =
.eggs
.tox
setup.py
python_files = test*/*.py
testpaths = infopen_pre_commit_hooks tests
[wheel]
universal = True