-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (38 loc) · 1004 Bytes
/
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
[tool.poetry]
name = "dioptra-iris-client"
version = "0.5.0"
description = "Python client for the Iris API."
authors = ["Maxime Mouchet <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/dioptra-io/iris-client"
packages = [{ include = "iris_client" }]
[tool.poetry.dependencies]
python = "^3.8"
Authlib = "^1.2.1"
httpx = "^0.25.0"
[tool.poetry.dev-dependencies]
bumpversion = "^0.6.0"
pre-commit = "^3.5.0"
mypy = "^1.6.1"
pytest = "^7.4.3"
pytest-asyncio = "^0.21.1"
pytest-cov = "^4.1.0"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.mypy]
disallow_untyped_calls = true
disallow_untyped_defs = true
ignore_missing_imports = true
implicit_reexport = false
no_implicit_optional = true
strict_equality = true
strict_optional = true
warn_no_return = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_ignores = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"