-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (58 loc) · 1.89 KB
/
pyproject.toml
File metadata and controls
63 lines (58 loc) · 1.89 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
[project]
name = "arckit-cli"
version = "4.6.0"
description = "ArcKit CLI - Enterprise Architecture Governance & Vendor Procurement Toolkit"
requires-python = ">=3.11"
dependencies = [
"typer",
"rich",
"httpx[socks]",
"platformdirs",
"readchar",
"truststore>=0.10.4",
]
authors = [{ name = "Your Name", email = "your.email@example.com" }]
readme = "README.md"
license = { text = "MIT" }
keywords = [
"architecture",
"enterprise",
"governance",
"procurement",
"rfp",
"vendor-selection",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Documentation",
"Topic :: System :: Systems Administration",
]
[project.urls]
Homepage = "https://github.com/tractorjuice/arc-kit"
Documentation = "https://github.com/tractorjuice/arc-kit/blob/main/README.md"
Repository = "https://github.com/tractorjuice/arc-kit"
Issues = "https://github.com/tractorjuice/arc-kit/issues"
[project.scripts]
arckit = "arckit_cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/arckit_cli"]
[tool.hatch.build.targets.wheel.shared-data]
"scripts" = "share/arckit/scripts"
".arckit" = "share/arckit/.arckit"
"docs" = "share/arckit/docs"
"docs/DEPENDENCY-MATRIX.md" = "share/arckit/docs/DEPENDENCY-MATRIX.md"
"docs/WORKFLOW-DIAGRAMS.md" = "share/arckit/docs/WORKFLOW-DIAGRAMS.md"
"VERSION" = "share/arckit/VERSION"
"CHANGELOG.md" = "share/arckit/CHANGELOG.md"
"arckit-codex" = "share/arckit/arckit-codex"
"arckit-opencode" = "share/arckit/arckit-opencode"
"arckit-copilot" = "share/arckit/arckit-copilot"