-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
76 lines (71 loc) · 1.65 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
[metadata]
name = scratchrelaxtv
description = Terraform developer tool to extract variables and generate variables.tf files.
long_description = file: README.md, CHANGELOG.md
long_description_content_type = text/markdown
version = 0.6.17
author = YakDriver
author_email = [email protected]
url = https://github.com/YakDriver/scratchrelaxtv
license = Apache Software License 2.0
platforms =
Linux
Windows
Darwin
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Operating System :: MacOS :: MacOS X
Operating System :: POSIX :: Linux
Operating System :: Microsoft :: Windows
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Utilities
[options]
install_requires =
packages = scratchrelaxtv
include_package_data = True
[options.entry_points]
console_scripts =
scratchrelaxtv = scratchrelaxtv.cli:main
relaxtv = scratchrelaxtv.cli:main
[bdist_wheel]
universal = 1
[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
--doctest-modules
--doctest-glob=\*.md
--tb=short
[flake8]
exclude =
.tox,
.git,
__pycache__,
.eggs,
*.egg,
build,
dist,
htmlcov,
*/static/salt/formulas/*
ignore = FI15,FI16,FI17,FI5,D107,W503,W504