-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
52 lines (44 loc) · 1.22 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 = "apiclarity"
version = "0.2.0"
description = "Client python package for interaction with APIClarity."
readme = "README.md"
license = "Apache-2.0"
authors = ["Jeff Napper <jenapper@cisco.com>"]
homepage = "https://github.com/openclarity/python-apiclarity-client"
repository = "https://github.com/openclarity/python-apiclarity-client"
[tool.poetry.dependencies]
python = "^3.7"
pydantic = {extras = ["dotenv"], version = "^1.10.4"}
requests = "^2.28.1"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
pytest-docker-tools = "^3.1.3"
ujson = "^5.7.0"
pytest-dotenv = "^0.5.2"
[tool.poetry.scripts]
pytest = "pytest:main"
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.mypy]
plugins = "pydantic.mypy"
follow_imports = "silent"
strict_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
disallow_any_generics = true
check_untyped_defs = true
no_implicit_reexport = true
disallow_untyped_defs = true
ignore_missing_imports = true
[tool.pydantic-mypy]
init_forbid_extra = true
init_typed = true
warn_required_dynamic_aliases = true
warn_untyped_fields = true
[tool.pytest.ini_options]
env_files = "tests/.env"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"