-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
73 lines (63 loc) · 1.53 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
[metadata]
description = asterisklint wrapper scripts and pre-commit hooks
url = https://github.com/VCTLabs/asterisklint-hooks
author = Stephen L Arnold
email = nerdboy@gentoo.org
long_description = file: README.rst
long_description_content_type = text/rst; charset=UTF-8
license_expression = MIT
license_files = LICENSE
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Environment :: Console
Topic :: Software Development
Topic :: Software Development :: Testing
keywords =
pre-commit
hooks
asterisk
[options]
python_requires = >= 3.7
packages = find:
zip_safe = True
[options.packages.find]
exclude =
tests*
[options.entry_points]
console_scripts =
dialplan-check = asterisklint_hooks.dialplan_check:main
dialplan-check-al = asterisklint_hooks.dialplan_check_al:main
# extra 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]
test =
pytest
pytest-cov
cov =
coverage[toml]
covdefaults
all =
%(cov)s
%(test)s
[check]
metadata = true
restructuredtext = true
strict = false
[check-manifest]
ignore =
.gitattributes
.gitignore
[flake8]
exclude =
.git,
__pycache__,
build,
dist,
docs,
tests
max-line-length = 90