-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
55 lines (48 loc) · 1.41 KB
/
setup.cfg
File metadata and controls
55 lines (48 loc) · 1.41 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
[metadata]
name = alchemy_git_hooks
version = 1.0.4
description = Alchemy Viewer coding policy checks
long_description = file: README.md
long_description_content_type = text/markdown
url = https://bitbucket.org/alchemyviewer/git-hooks
classifiers =
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Programming Language :: Python :: 3.14
Programming Language :: Python :: Implementation :: CPython
[options]
packages = find:
install_requires =
llsd
[options.packages.find]
exclude = tests*
[options.entry_points]
console_scripts =
check-linden-copyright = git_hooks.copyright:main
check-linden-indent-with-spaces = git_hooks.indent_with_spaces:main
check-linden-indent-with-tabs = git_hooks.indent_with_tabs:main
check-linden-jira-issue = git_hooks.jira_issue:main
check-linden-license = git_hooks.license:main
check-linden-no-trigraphs = git_hooks.no_trigraphs:main
check-linden-opensource-license = git_hooks.opensource_license:main
check-llsd = git_hooks.llsd:main
check-end-of-file = git_hooks.end_of_file:main
[bdist_wheel]
universal = True
[options.extras_require]
test =
pytest
covdefaults
pytest-cov
dev =
covdefaults
pre-commit
tox
pytest
pytest-cov
[coverage:run]
plugins = covdefaults
[flake8]
max-line-length = 132