forked from cloud-custodian/cloud-custodian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (50 loc) · 1.32 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
[tool.poetry]
name = "c7n"
version = "0.9.15"
description = "Cloud Custodian - Policy Rules Engine"
authors = ["Cloud Custodian Project"]
readme = "README.md"
homepage = "https://cloudcustodian.io"
documentation = "https://cloudcustodian.io/docs"
repository = "https://github.com/cloud-custodian/cloud-custodian"
license = "Apache-2.0"
packages = [
{ include = "c7n" }]
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Topic :: System :: Systems Administration",
"Topic :: System :: Distributed Computing"]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/cloud-custodian/cloud-custodian/issues"
[tool.poetry.scripts]
custodian = 'c7n.cli:main'
[tool.poetry.dependencies]
python = "^3.6"
boto3 = "^1.12.31"
jsonschema = "^3.2.0"
argcomplete = "^1.11.1"
python-dateutil = "^2.8.1"
pyyaml = "^5.3"
tabulate = "^0.8.6"
importlib-metadata = ">1.7.0;python_version<3.8"
docutils = ">=0.14,<0.18"
[tool.poetry.dev-dependencies]
pytest = "^6.0.0"
coverage = "^5.0.3"
placebo = "^0.9.0"
pytest-xdist = "^2.0"
pytest-cov = "^2.8.1"
pytest-terraform = "^0.5.0"
mock = "^4.0.1"
vcrpy = "^4.0.2"
aws-xray-sdk = "^2.5.0"
flake8 = "^3.7.9"
# tox = "^3.14.5"
jsonpatch = "^1.25"
psutil = "^5.7.0"
# wheel = "==0.30.0"
twine = "^3.1.1"
pytest-sugar = "^0.9.2"
click = "^8.0"
[tool.black]
skip-string-normalization = true