forked from cloud-custodian/cloud-custodian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
73 lines (65 loc) · 1.74 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[tool.poetry]
name = "c7n"
version = "0.9.23"
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.7"
boto3 = "^1.12.31"
jsonschema = ">=3.0.0"
argcomplete = ">=1.12.3"
python-dateutil = "^2.8.2"
pyyaml = ">=5.4.0"
tabulate = "^0.8.6"
importlib-metadata = ">=4.11.1"
docutils = ">=0.14,<0.18"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
coverage = "^6.4.4"
placebo = "^0.9.0"
pytest-xdist = "^3.0"
pytest-cov = "^3.0.0"
pytest-terraform = "^0.6.0"
mock = "^4.0.1"
vcrpy = "^4.0.2"
aws-xray-sdk = "^2.5.0"
# 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"
freezegun = "^1.2.2"
pytest-recording = "^0.12.1"
[tool.poetry.group.dev.dependencies]
ruff = "^0.0.246"
[tool.black]
skip-string-normalization = true
[tool.ruff]
line-length = 100
# E741 - single char variables
# E401 - multiple imports in a single line
ignore = ["E741", "E401"]
exclude = ["__init__.py"]
[tool.pytest.ini_options]
junit_family = "xunit2"
addopts = "--tb=native"
markers = ["functional", "skiplive"]
python_files = "test_*.py"
norecursedirs = ["data", "cassettes", "templates", "terraform"]