-
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.1 KB
/
setup.cfg
File metadata and controls
55 lines (48 loc) · 1.1 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 = hcl2tf
version = attr: hcl2tf.__version__
author = Nils Diefenbach
author_email = foss@deepbrook.io
description = Convenience Utility for easier access to parsed terraform configuration
long_description = file: README.rst, CHANGELOG.rst, LICENSE.rst
url = https://github.com/deepbrook/python-hcl2-terraform
keywords = kubernetes
license = MIT
classifiers =
'Intended Audience :: Developers'
'Operating System :: Unix'
'Operating System :: POSIX'
'Programming Language :: Python'
'Programming Language :: Python :: 3.9'
'Programming Language :: Python :: Implementation :: CPython'
'Topic :: Terraform'
'Topic :: IaC'
[options]
zip_safe = False
include_package_data = True
package_dir=
=src
packages=find:
python_requires = >=3.8
install_requires =
python-hcl2
tests_requires =
tox
pytest
pytest-cov;
[options.package_data]
* = *.txt, *.rst
[options.packages.find]
where=src
[tox:tox]
min_version = 4.0
env_list =
py310
pass_env = []
set_env = {}
[testenv]
deps =
pytest
pytest-cov
pyyaml
commands = pytest --cov=hcl2tf {posargs} tests