-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
25 lines (23 loc) · 1.23 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
[tool.black]
line-length = 79
[build-system]
requires = ["setuptools", "poetry"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "cfn_mp_ql_rules"
version = "0.0.4"
description = "checks CloudFormation templates against AWS Marketplace Quick Launch rules"
license = "Apache License 2.0"
keywords = ["aws,", "lint,", "aws-cfn_mp_ql_rules"]
classifiers = ["Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7"]
homepage = "https://github.com/aws-ia/cfn-mp-ql-rules"
authors = ["AWS Quick Start team <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "*"
cfn-lint = ">=0.87.1"
policyuniverse = "<2,>=1.3.5"
pyspellchecker = ">=0.6.2,<1.0.0"
[tool.poetry.scripts]
wrapped-cfn-lint = 'cfn_mp_ql_rules.cfnlint_exit_code_wrapper:main'
files-are-cfn = 'cfn_mp_ql_rules.files_are_cfn:main'