-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (52 loc) · 1.21 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (52 loc) · 1.21 KB
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
54
55
56
57
58
59
60
61
[build-system]
requires = ["hatchling>=1.25"]
build-backend = "hatchling.build"
[project]
name = "steam-pulse"
version = "0.1.0"
description = "Read-only CS2 skin arbitrage monitoring bot."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "Steam-Pulse maintainers" }]
dependencies = [
"aiosqlite>=0.20,<1",
"httpx>=0.25.2,<0.26",
"pydantic>=2.8,<3",
"pydantic-settings>=2.14,<3",
"python-dotenv>=1.0,<2",
"typer>=0.12,<1",
]
[project.optional-dependencies]
dev = [
"mypy>=1.11,<2",
"pip-audit>=2.8,<3",
"pytest>=9.0.3,<10",
"pytest-asyncio>=0.23,<1",
"respx>=0.21,<1",
"ruff>=0.6,<1",
"setuptools>=78.1.1,<81",
]
[project.scripts]
steam-pulse = "steam_pulse.interfaces.cli:app"
[tool.hatch.build.targets.wheel]
packages = ["src/steam_pulse"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py311"
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP", "SIM"]
ignore = ["B008"]
[tool.mypy]
python_version = "3.11"
strict = true
warn_return_any = true
warn_unused_configs = true
plugins = []
[[tool.mypy.overrides]]
module = ["aiosqlite"]
ignore_missing_imports = true