-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
53 lines (47 loc) · 1.31 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
[metadata]
name=gitlab-linters
version = file: pre_commit_hooks/VERSION
description=Tools to validate gitlab CI configuration.
;long_description = file: README.md
;long_description_content_type = text/markdown
url=https://github.com/jacobdonenfeld/gitlab-linters
author = Jacob Donenfeld
license = MIT
license_files = LICENSE
long_description_content_type=text/markdown
long_description=README.md
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
[options]
include_package_data = true
packages = find:
install_requires =
lenses
PyYAML
python-gitlab
requests
GitPython
python_requires = >=3.8
[options.packages.find]
exclude =
tests*
testing*
[options.entry_points]
console_scripts =
gitlab-lint = pre_commit_hooks.gitlab_ci_lint:main
gitlab-shellcheck = pre_commit_hooks.gitlab_script_check:main
[bdist_wheel]
universal = True
[coverage:run]
plugins = covdefaults
[flake8]
max-line-length = 105
extend-ignore = E203 F841
exclude = .venv .pytest_cache tests/resources/*