forked from skhomuti/csm-sentinel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 775 Bytes
/
pyproject.toml
File metadata and controls
36 lines (33 loc) · 775 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
[project]
name = "sentinel"
dynamic = ["version"]
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"web3>=7.12.0",
"python-telegram-bot[rate-limiter,job-queue]>=21.4",
"python-dotenv",
"tqdm>=4.66.5",
"aiogram>=3.12.0",
"pytest-asyncio>=1.1.0",
"async-lru>=2.0.5",
]
[tool.uv]
cache-dir = ".uv-cache"
package = false
[dependency-groups]
dev = [
"pytest>=8.3.4",
"pytest-xdist>=3.8.0",
"ruff>=0.15.0",
"ty>=0.0.15",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
asyncio_default_test_loop_scope = "function"
addopts = "-m \"not integration\""
markers = [
"integration: mark tests that require a local Anvil fork",
]