-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
46 lines (41 loc) · 1.17 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
[project]
name = "skitter"
version = "0.2.0"
description = "AI agent orchestrator using A2A-over-MQTT"
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"aiomqtt>=2.5.0",
"anthropic>=0.88",
"openai>=2.30",
"python-dotenv>=1.2.1",
"click>=8.1",
"rich>=13.0.0",
"paho-mqtt>=2.0.0",
"pyyaml>=6.0",
]
[project.scripts]
skitter = "skitter.__main__:dispatch"
[project.optional-dependencies]
cloud = ["boto3>=1.35"]
postgres = ["psycopg[binary]>=3.1", "psycopg_pool>=3.1"]
[project.urls]
Homepage = "https://github.com/id/skitter"
Repository = "https://github.com/id/skitter"
Issues = "https://github.com/id/skitter/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = ["pytest>=8", "pytest-asyncio>=0.25"]