-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
99 lines (94 loc) · 1.99 KB
/
Copy pathpyproject.toml
File metadata and controls
99 lines (94 loc) · 1.99 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ircawp"
version = "0.1.0"
description = "Slack bot"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"aiohttp>=3.12.15",
"aiosignal>=1.4.0",
"appier>=1.34.8",
"async-timeout>=5.0.1",
"attrs>=25.3.0",
"autopep8>=2.3.2",
"beautifulsoup4>=4.13.5",
"certifi>=2025.8.3",
"charset-normalizer>=3.4.3",
"commonmark>=0.9.1",
"faster-whisper>=1.1.0",
"feedparser>=6.0.11",
"frozenlist>=1.7.0",
"idna>=3.10",
"langchain>=0.3.27",
"llama-cpp-python>=0.3.16",
"multidict>=6.6.4",
"numpy>=1.26.4",
"optimum-quanto>=0.2.7",
"packaging>=25.0",
"playwright>=1.56.0",
"pycodestyle>=2.14.0",
"pygments>=2.19.2",
"pyparsing>=3.2.3",
"pytest>=9.0.2",
"python-dotenv>=1.1.1",
"pyyaml>=6.0.2",
"requests>=2.32.5",
"rich>=14.1.0",
"slack-bolt>=1.24.0",
"tomli>=2.2.1",
"typing-extensions>=4.15.0",
"urllib3>=2.5.0",
"wikitextparser>=0.56.4",
"yarl>=1.20.1",
"yt-dlp>=2026.3.3",
]
[tool.hatch.build.targets.wheel]
packages = [
"app",
]
include = [
"app/**",
]
exclude = [
"**/__pycache__/**",
"tests/**",
"_archive/**",
"attic/**",
]
[tool.hatch.build.targets.sdist]
include = [
"app/**",
"README.md",
"pyproject.toml",
]
exclude = [
"**/__pycache__/**",
"tests/**",
"_archive/**",
"attic/**",
]
[project.optional-dependencies]
test = [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"pytest-mock>=3.11.1",
"pytest-asyncio>=0.21.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short --strict-markers"
markers = [
"unit: Unit tests",
"integration: Integration tests",
"slow: Slow running tests",
"plugin: Tests for plugin framework",
"tools: Tests for tool framework",
]
[tool.uv]
exclude-newer = "1 week"