-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
57 lines (50 loc) · 1.44 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
[tool.poetry]
name = "cloud-radar"
version = "0.0.0"
description = "Run functional tests on cloudformation stacks."
readme = "README.md"
authors = ["Levi Blaney <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/DontShaveTheYak/cloud-radar"
keywords = ["aws", "cloudformation", "cloud-radar", "testing", "taskcat", "cloud", "radar"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Testing"
]
[tool.poetry.dependencies]
python = "^3.8.1"
taskcat = "^0.9.41"
cfn-flip = "^1.3.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.0.0"
coverage = {extras = ["toml"], version = "^7.0.0"}
pytest-cov = "^5.0.0"
pytest-mock = "^3.6.1"
isort = "^5.12.0"
black = "^23.0.0"
flake8 = "^7.0.0"
flake8-black = "^0.3.0"
flake8-isort = "^6.1.0"
flake8-bugbear = "^23.0.0"
mypy = "^1.0.0"
types-requests = "^2.28.11"
types-PyYAML = "^6.0.12"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["cloud_radar"]
[tool.coverage.report]
show_missing = true
fail_under = 95
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"