-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (43 loc) · 1009 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
44
45
46
47
48
49
50
51
52
53
[tool.poetry]
name = "metablock"
version = "0.8.0"
description = "Metablock cloud python client"
authors = ["Luca <luca@quantmind.com>"]
license = "BSD"
readme = "readme.md"
[tool.poetry.dependencies]
python = ">=3.10"
aiohttp = "^3.10.10"
click = "^8.1.7"
pyyaml = "^6.0.2"
[tool.poetry.group.dev.dependencies]
pytest-asyncio = "^0.24.0"
pytest = "^8.3.3"
pytest-cov = "^5.0.0"
mypy = "^1.12.0"
black = "^24.10.0"
isort = "^5.11.3"
python-dotenv = "^1.0.0"
types-pyyaml = "^6.0.12.20240917"
ruff = "^0.7.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
metablock = "metablock.cli:main"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = [
"tests"
]
[tool.ruff]
lint.select = ["A", "E", "W", "F", "I", "B", "N"]
line-length = 88
[tool.mypy]
disallow_untyped_calls = true
warn_return_any = false
disallow_untyped_defs = true
warn_no_return = true
[[tool.mypy.overrides]]
module = "tests.*"
disallow_untyped_defs = false