-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
77 lines (67 loc) · 1.85 KB
/
pyproject.toml
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
[tool.poetry]
name = "terraform-worker"
version = "0.12.0"
description = "An orchestration tool for Terraform"
authors = ["Richard Maynard <[email protected]>"]
packages = [
{ include="tfworker", from="." },
]
readme = "README.md"
repository = "https://github.com/ephur/terraform-worker"
homepage = "https://github.com/ephur/terraform-worker"
documentation = "https://github.com/ephur/terraform-worker"
license = "Apache-2.0"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Topic :: System :: Systems Administration"
]
[tool.poetry.dependencies]
python = "^3.11"
atlassian-python-api = "^3.41"
boto3 = "^1.34"
click = "^8.1"
google-cloud-storage = "^2.17"
jinja2 = "^3.1"
mergedeep = "^1.3"
pydantic = "^2.7"
python-hcl2 = "^4.3"
pyyaml = "^6.0"
setuptools = "^70.0"
pydantic-settings = "^2.3.4"
packaging = "^24.1"
[tool.poetry.scripts]
worker = 'tfworker.cli:cli'
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
black = "^24.4"
coverage = "^7.5"
deepdiff = "^7.0"
flake8 = "^7.0"
ipython = "^8.24"
isort = "^5.13"
pytest = "^8.2"
pytest-cov = "^5.0"
pytest-depends = "^1.0"
pytest-mock = "^3.14"
pytest-socket = "^0.7"
pytest-timeout = "2.3.1"
seed-isort-config = "^2.2"
Sphinx = "^7.3"
wheel = "^0.43"
moto = {version = "^5.0.10", extras = ["sts", "dynamodb", "s3"]}
[tool.pytest.ini_options]
addopts = "--capture=sys --cov=tfworker --cov-report= -m 'not performance'"
markers = [
"performance: mark a test as a performance test"
]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"