forked from DontShaveTheYak/cf2tf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (40 loc) · 1.06 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
[tool.poetry]
name = "cf2tf"
version = "0.0.0"
description = "Convert Cloudformation Templates to Terraform."
readme = "README.md"
authors = ["Levi Blaney <[email protected]>"]
repository = "https://github.com/DontShaveTheYak/cf2tf"
keywords = ["cloudformation", "terraform", "cf2tf", "convert", "cloud", "conversion"]
license = "GPL-3.0-only"
[tool.poetry.scripts]
cf2tf = "cf2tf.app:cli"
[tool.poetry.dependencies]
python = "^3.8.1"
cfn-flip = "^1.3.0"
PyYAML = "^6.0"
click = "^8.1.2"
GitPython = "^3.1.27"
thefuzz = {extras = ["speedup"], version = "^0.22.0"}
click-log = "^0.4.0"
requests = "^2.27.1"
pytest = "^8.0.0"
[tool.poetry.dev-dependencies]
black = "^24.0.0"
flake8 = "^7.0.0"
flake8-black = "^0.3.3"
coverage = {extras = ["toml"], version = "^7.0.0"}
pytest-cov = "^5.0.0"
mypy = "^1.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["cf2tf"]
[tool.coverage.report]
show_missing = true