40 lines
801 B
TOML
40 lines
801 B
TOML
[project]
|
|
name = "sshecret-admin"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Allan Eising", email = "allan@eising.dk" }
|
|
]
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"bcrypt>=4.3.0",
|
|
"click>=8.1.8",
|
|
"cryptography>=44.0.2",
|
|
"fastapi[standard]>=0.115.12",
|
|
"httpx>=0.28.1",
|
|
"jinja2>=3.1.6",
|
|
"jinja2-fragments>=1.9.0",
|
|
"pydantic>=2.10.6",
|
|
"pyjwt>=2.10.1",
|
|
"pykeepass>=4.1.1.post1",
|
|
"sqlmodel>=0.0.24",
|
|
"sshecret",
|
|
]
|
|
|
|
[tool.uv.sources]
|
|
sshecret = { workspace = true }
|
|
|
|
[project.scripts]
|
|
sshecret-admin = "sshecret_admin.core.cli:cli"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytailwindcss>=0.2.0",
|
|
"types-pyjwt>=1.7.1",
|
|
]
|