-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.cfg
111 lines (103 loc) · 2.42 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
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
# pyup: ignore file
[metadata]
name = watchmaker
description = Applied Configuration Management
version = 0.28.5
long_description = file: README.md, CHANGELOG.md
long_description_content_type = text/markdown
author = Plus3IT Maintainers of Watchmaker
author_email = [email protected]
url = https://github.com/plus3it/watchmaker
license = Apache Software License 2.0
platforms =
Linux
Windows
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: System Administrators
License :: OSI Approved :: Apache Software License
Operating System :: POSIX :: Linux
Operating System :: Microsoft :: Windows
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Utilities
[options]
install_requires =
backoff;python_version>="3.6"
click
defusedxml;platform_system=="Windows"
distro;python_version>="3.6"
importlib_metadata
importlib_resources
futures;python_version<"3"
six
pywin32;platform_system=="Windows"
PyYAML;python_version>="3.6"
compatibleversion>=0.1.2
oschmod>=0.1.3
package_dir =
= src
packages = find:
include_package_data = True
[options.entry_points]
console_scripts =
wam = watchmaker.cli:main
watchmaker = watchmaker.cli:main
[options.packages.find]
where = src
[bdist_wheel]
universal = 1
[flake8]
exclude =
.tox,
.git,
__pycache__,
.eggs,
*.egg,
build,
dist,
htmlcov,
*/static/salt/formulas/*
*/_vendor/*
ignore = FI15,FI16,FI17,FI18,FI5,D107,W503,W504
[tool:pytest]
mock_use_standalone_module = true
norecursedirs =
.git
.tox
.env
__pycache__
dist
build
htmlcov
python_files =
test_*.py
*_test.py
tests.py
addopts =
-rxEfsw
--strict-markers
--doctest-modules
--doctest-glob=\*.md
--tb=short
[isort]
profile=black
force_single_line=False
line_length=79
known_first_party=watchmaker
default_section=THIRDPARTY
forced_separate=test_watchmaker
skip =
.tox
build
skip_glob =
*/static/salt/formulas/*