-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
44 lines (36 loc) · 950 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
[tool.poetry]
name = "meerkat"
version = "0.2.0"
description = "Monitor things and react to changes swiftly"
authors = ["Nicola De Angeli <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
aioconsole = "^0.8"
aiologger = "^0.7"
aiopath = "^0.7"
dataclass-wizard = "^0.23"
[tool.poetry.group.dev.dependencies]
mypy = "^1.11"
ruff = "^0.6"
pytest = "^8.3.3"
pytest-asyncio = "^0.24.0"
[[tool.mypy.overrides]]
module = ["aioconsole", "aiologger", "aiopath"]
ignore_missing_imports = true
[tool.ruff.lint]
select = [
"B", # flake8-bugbear
"E", # pycodestyle
"F", # Pyflakes
"I", # isort
"SIM", # flake8-simplify
"UP", # pyupgrade
]
# Ignore unused imports in __init__.py files (would need __all__ otherwise)
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"