Files
publicpaste/pyproject.toml
尘曲 73a6614118 Add web interface and Docker deployment
Expose the paste tool through a lightweight web UI/API and provide the container setup required for the publicpaste service.
2026-05-13 01:00:40 +08:00

35 lines
896 B
TOML

[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "publicpaste"
version = "0.1.0"
description = "Paste text to the first working public paste provider."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "publicpaste contributors" }]
keywords = ["paste", "cli", "public", "snippet"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Utilities",
]
dependencies = []
[project.scripts]
publicpaste = "publicpaste.cli:main"
publicpaste-web = "publicpaste.web:main"
[tool.setuptools.packages.find]
include = ["publicpaste*"]
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]