-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.5 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (43 loc) · 1.5 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
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "indesign-cli"
version = "0.5.12"
description = "Agent-native CLI for Adobe InDesign automation"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [{ name = "Sa" }]
maintainers = [{ name = "indesign-cli maintainers" }]
keywords = ["indesign", "cli", "agent", "automation", "mcp", "adobe"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: JavaScript",
"Topic :: Multimedia :: Graphics",
"Topic :: Software Development :: Build Tools",
]
[project.scripts]
indesign-cli = "cli_anything.indesign.indesign_cli:main"
cli-anything-indesign = "cli_anything.indesign.indesign_cli:main"
indesign-cli-agent = "cli_anything.indesign.agent_bootstrapper:main"
[project.urls]
Repository = "https://github.com/zhanglongxiao111/indesign-cli"
Issues = "https://github.com/zhanglongxiao111/indesign-cli/issues"
Homepage = "https://github.com/zhanglongxiao111/indesign-cli#readme"
[tool.setuptools]
package-dir = { "" = "agent-harness" }
include-package-data = true
[tool.setuptools.packages.find]
where = ["agent-harness"]
include = ["cli_anything.*"]
exclude = ["cli_anything.indesign.tests*"]
[tool.setuptools.package-data]
"cli_anything.indesign" = [
"node/*.mjs",
"server/src/core/indesign-tool-registry.json",
]