-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (37 loc) · 970 Bytes
/
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
[tool.poetry]
name = "vapor"
version = "0.1.0"
description = "Django ORM meets Cloudformation"
authors = ["Kai Xia <kaix+github@fastmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "/~https://github.com/xiaket/vapor"
keywords = ["cloudformation", "boto3"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Utilities",
]
[tool.poetry.scripts]
vapor = "vapor.__main__:main"
[tool.poetry.dependencies]
python = "^3.9"
boto3 = "^1.18"
PyYAML = "^5.4.1"
cfn-lint = "^0.53.0"
Jinja2 = "^3.0.1"
cfn-flip = "^1.2.3"
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
pytest-cov = "^2.12.1"
pylint = "^2.9.6"
coveralls = "^3.2.0"
moto = { version = "^2.2.2", extras = ["cloudformation"]}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pylint."MESSAGES CONTROL"]
disable = [
"logging-fstring-interpolation",
]