-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.9 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (43 loc) · 1.9 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
[project]
name = "agentopolis"
version = "0.30.0"
description = "Agentopolis — Habbo-style visualization of Claude Code agents building your repo as a city"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "LeChristopher Blackwell", email = "codeblackwell@gmail.com" }]
keywords = ["claude-code", "visualization", "agents", "isometric", "pixel-art"]
requires-python = ">=3.11"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Version Control :: Git",
"Topic :: Scientific/Engineering :: Visualization",
]
dependencies = ["fastapi>=0.110", "uvicorn>=0.29"]
# the hosted demo installs `.[card]` so forge links unfurl with a generated social card;
# CLI installs stay at the two deps above (the card path no-ops without Pillow)
[project.optional-dependencies]
card = ["pillow>=10.1"]
test = ["pytest>=8", "httpx", "pillow>=10.1", "pytest-playwright>=0.5"]
[project.urls]
Homepage = "https://github.com/CodeBlackwell/agentopolis"
Source = "https://github.com/CodeBlackwell/agentopolis"
Issues = "https://github.com/CodeBlackwell/agentopolis/issues"
Changelog = "https://github.com/CodeBlackwell/agentopolis/blob/master/CHANGELOG.md"
[project.scripts]
agentopolis = "agentopolis.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
# showcase/ (baked demo fixtures) and bake.py (local-only fixture generator) ship
# with the Docker demo via COPY, never to CLI users — keep them out of both artifacts
[tool.hatch.build.targets.wheel]
packages = ["agentopolis"]
exclude = ["agentopolis/showcase", "agentopolis/bake.py"]
[tool.hatch.build.targets.sdist]
exclude = ["agentopolis/showcase", "agentopolis/bake.py"]