18 lines
472 B
TOML
18 lines
472 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "python-helpers"
|
|
version = "1.0.0"
|
|
description = "Generic Python helpers and command-line tools with no cloud-specific logic"
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
|
|
[project.scripts]
|
|
serve-markdown = "python_helpers.cli.serve_markdown:main"
|
|
token-decoder = "python_helpers.cli.token_decoder:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["python_helpers*"]
|