Some checks are pending
Mark stable commit / test-unit (push) Waiting to run
Mark stable commit / test-integration (push) Waiting to run
Mark stable commit / test-env-virtual (push) Waiting to run
Mark stable commit / test-env-nix (push) Waiting to run
Mark stable commit / test-e2e (push) Waiting to run
Mark stable commit / test-virgin-user (push) Waiting to run
Mark stable commit / test-virgin-root (push) Waiting to run
Mark stable commit / lint-shell (push) Waiting to run
Mark stable commit / lint-python (push) Waiting to run
Mark stable commit / mark-stable (push) Blocked by required conditions
54 lines
1.1 KiB
TOML
54 lines
1.1 KiB
TOML
[build-system]
|
|
requires = [
|
|
"setuptools>=68",
|
|
"wheel"
|
|
]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "kpmx"
|
|
version = "1.8.0"
|
|
description = "Kevin's package-manager tool (pkgmgr)"
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
license = { text = "MIT" }
|
|
|
|
authors = [
|
|
{ name = "Kevin Veen-Birkenbach", email = "info@veen.world" }
|
|
]
|
|
|
|
# Base runtime dependencies
|
|
dependencies = [
|
|
"PyYAML>=6.0",
|
|
"tomli; python_version < \"3.11\"",
|
|
"jinja2>=3.1"
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://s.veen.world/pkgmgr"
|
|
Source = "https://github.com/kevinveenbirkenbach/package-manager"
|
|
|
|
[project.optional-dependencies]
|
|
keyring = ["keyring>=24.0.0"]
|
|
dev = [
|
|
"mypy"
|
|
]
|
|
|
|
# CLI entrypoint: this is the "pkgmgr" command
|
|
[project.scripts]
|
|
pkgmgr = "pkgmgr.cli:main"
|
|
|
|
# -----------------------------
|
|
# setuptools configuration
|
|
# -----------------------------
|
|
# Source layout: all packages live under "src/"
|
|
[tool.setuptools]
|
|
package-dir = { "" = "src", "config" = "config" }
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src", "."]
|
|
include = ["pkgmgr*", "config*"]
|
|
|
|
[tool.setuptools.package-data]
|
|
"config" = ["defaults.yaml"]
|