-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (38 loc) · 928 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
[project]
name = "weather-bot"
version = "2.0.0-alpha"
description = "Telegram Bot with weather forecasts from OpenWeatherMap API"
authors = [
{name = "Vadim Nifadev", email = "[email protected]"},
]
dependencies = [
"telethon>=1.34.0",
"python-dotenv>=1.0.1",
"mashumaro[orjson]>=3.12",
"httpx>=0.27.0",
]
requires-python = "==3.11.*"
readme = "README.md"
license = {text = "MIT"}
[tool.pdm]
distribution = false
plugins = [
"sync-pre-commit-lock"
]
[tool.pdm.dev-dependencies]
dev = [
"pre-commit>=3.6.2",
"pytest>=8.1.1",
"pytest-asyncio>=0.23.5.post1",
"factory-boy>=3.3.0",
"faker>=24.1.0",
"pytest-httpx>=0.30.0",
]
[tool.sync-pre-commit-lock]
# Run `pre-commit install` automatically if applicable
automatically-install-hooks = false
[tool.typos]
type.svg.extend-glob = ["*.svg"]
type.svg.check-file = false
[tool.pytest.ini_options]
pythonpath = ["src"]