-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (32 loc) · 830 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (32 loc) · 830 Bytes
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
[tool.poetry]
name = "job-monitor"
version = "0.1.0"
description = ""
authors = ["Nicola De Angeli <112023843+niqodea@users.noreply.github.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
meerkat = {path = "..meerkat", develop = true}
aiohttp = "^3.10"
beautifulsoup4 = "^4.12"
requests = "^2.32"
[tool.poetry.group.dev.dependencies]
mypy = "^1.12"
ruff = "^0.7"
types-beautifulsoup4 = "^4.12"
types-requests = "^2.32"
[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"