-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (59 loc) · 1.57 KB
/
pyproject.toml
File metadata and controls
66 lines (59 loc) · 1.57 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pyhall-wcp"
version = "0.3.0"
description = "PyHall — Python reference implementation of WCP (Worker Class Protocol)"
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.10"
keywords = ["ai", "agents", "workers", "orchestration", "governance", "wcp", "protocol"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"pydantic>=2.0",
"requests>=2.28",
"rich>=13.0",
"typer>=0.9",
"python-dotenv>=1.0",
"flask>=2.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
]
discord = [
"discord-py>=2.4",
]
[project.urls]
Homepage = "https://pyhall.dev"
Documentation = "https://pyhall.dev/introduction/"
Repository = "https://github.com/pyhall/pyhall-python"
Issues = "https://github.com/pyhall/pyhall-python/issues"
[project.scripts]
pyhall = "pyhall.cli:main"
pyhall-mcp = "pyhall.mcp.__main__:main"
[tool.hatch.build.targets.wheel]
packages = ["pyhall"]
artifacts = [
"pyhall/taxonomy/catalog.json",
]
[tool.hatch.build.targets.sdist]
exclude = [
"hall.db",
"*.db",
".env",
".env.*",
]
[tool.pytest.ini_options]
testpaths = ["tests"]