-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
52 lines (43 loc) · 1.04 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
[tool.poetry]
name = "aws-cost-reporter"
version = "0.1.0"
description = "Report WAS costs to slack"
authors = ["Meni Yakove <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
packages = [{ include = "app" }]
[tool.poetry.dependencies]
python = "^3.9"
setuptools = "^75.0.0"
click = "^8.1.7"
requests = "*"
boto3 = "^1.34.74"
flask = "^3.0.2"
pyaml-env = "^1.2.1"
croniter = "^6.0.0"
python-simple-logger = "^2.0.0"
pyhelper-utils = "^1.0.0"
[tool.poetry.group.dev.dependencies]
ipdb = "^0.13.13"
[tool.coverage.run]
omit = ["app/tests/*"]
[tool.coverage.report]
fail_under = 60
skip_empty = true
[tool.coverage.html]
directory = ".tests_coverage"
[tool.poetry.group.tests.dependencies]
pytest-mock = "^3.14.0"
pytest = "^8.1.1"
pytest-cov = "^6.0.0"
[tool.mypy]
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
no_implicit_optional = true
show_error_codes = true
warn_unused_ignores = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"