-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (67 loc) · 2.11 KB
/
pyproject.toml
File metadata and controls
76 lines (67 loc) · 2.11 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "python-slack-agents"
version = "0.7.0"
description = "A Python framework for deploying AI agents as Slack bots"
authors = [{name = "Eric Pichon", email = "epichon@comparenetworks.com"}]
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.12"
keywords = ["slack", "ai", "agents", "chatbot", "llm", "mcp", "anthropic", "openai"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Communications :: Chat",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"slack-bolt[async]>=1.20,<2",
"slack-sdk[socket-mode-handlers]>=3.33,<4",
"aiohttp>=3.9,<4",
"mcp>=1.0,<2",
"anthropic>=0.40,<1",
"openai>=1.50,<2",
"asyncpg>=0.30,<1",
"aiosqlite>=0.20,<1",
"opentelemetry-sdk>=1.20,<2",
"opentelemetry-exporter-otlp-proto-http>=1.20,<2",
"pydantic>=2.0,<3",
"pyyaml>=6.0,<7",
"python-dotenv>=1.0,<2",
"httpx>=0.27,<1",
"pymupdf>=1.24,<2",
"pymupdf4llm>=0.3,<1",
"python-docx>=1.1,<2",
"openpyxl>=3.1,<4",
"fpdf2>=2.8,<3",
"python-pptx>=1.0,<2",
]
[project.urls]
Homepage = "https://github.com/CompareNetworks/python-slack-agents"
Repository = "https://github.com/CompareNetworks/python-slack-agents"
Documentation = "https://github.com/CompareNetworks/python-slack-agents/tree/main/docs"
Issues = "https://github.com/CompareNetworks/python-slack-agents/issues"
[project.optional-dependencies]
dev = [
"pytest>=8.0,<9",
"pytest-asyncio>=0.24,<1",
"ruff>=0.8,<1",
"pre-commit>=4.0,<5",
]
[project.scripts]
slack-agents = "slack_agents.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/slack_agents"]
[tool.hatch.build.targets.wheel.force-include]
"llms-full.txt" = "slack_agents/llms-full.txt"
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.pytest.ini_options]
asyncio_mode = "auto"