-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (43 loc) · 980 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
[tool.poetry]
name = "employee-birthdays"
version = "1.4.0"
description = "Notifications about employee's birthdays"
authors = ["Eldos <[email protected]>"]
readme = "README.md"
packages = [{include = "employee_birthdays"}]
[tool.poetry.dependencies]
python = "^3.11"
httpx = "^0.27.0"
pydantic = "^2.6.3"
bs4 = "^0.0.2"
lxml = "^5.1.0"
types-beautifulsoup4 = "^4.12.0.20240511"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.2"
pytest-cov = "^4.1.0"
pylint = "^3.2.6"
mypy = "^1.11.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = [
"src",
]
[tool.mypy]
python_version = "3.11"
mypy_path = "src"
explicit_package_bases = true
check_untyped_defs = true
[tool.coverage.run]
omit = [
"tests/*",
"src/main.py",
"src/http_clients.py",
"src/exceptions/*",
"src/models/*",
"src/new_types/*",
"src/**/__init__.py",
"src/enums/*",
"src/logger.py",
]