[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "secretsh"
version = "0.2.0"
description = "Secure subprocess secret injection for AI agents"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
keywords = ["security", "secrets", "subprocess", "redaction", "ai"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Security",
"Typing :: Typed",
]
[project.urls]
Repository = "https://github.com/lthoangg/secretsh"
Documentation = "https://github.com/lthoangg/secretsh#readme"
Issues = "https://github.com/lthoangg/secretsh/issues"
[dependency-groups]
dev = [
"pytest>=9.0",
"pytest-cov>=7.0",
]
[tool.hatch.build.targets.wheel]
packages = ["python/secretsh"]
[tool.pytest.ini_options]
testpaths = ["tests"]