-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.cfg
More file actions
31 lines (26 loc) · 723 Bytes
/
setup.cfg
File metadata and controls
31 lines (26 loc) · 723 Bytes
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
[metadata]
name = pre-commit-maven
version = 0.0.1
description = pre-commit hook that wraps maven
[options]
packages = find:
python_requires = >=3.7
install_requires =
ruamel.yaml>=0.15
toml
[options.entry_points]
console_scripts =
maven = pre_commit_maven.maven:main
maven-compile = pre_commit_maven.maven_compile:main
maven-test = pre_commit_maven.maven_test:main
maven-checkstyle = pre_commit_maven.maven_checkstyle:main
maven-spotless-check = pre_commit_maven.maven_spotless_check:main
maven-spotless-apply = pre_commit_maven.maven_spotless_apply:main
[options.packages.find]
exclude =
tests*
integration*
[coverage:run]
plugins = covdefaults
[bdist_wheel]
universal = True