pssecret-server/pyproject.toml

40 lines
1 KiB
TOML
Raw Normal View History

2024-12-25 17:35:01 +00:00
[tool.poetry]
name = "pssecret"
version = "0.0.1"
description = "API service for secrets sharing over network"
authors = ["Ivan Golikov <root@ivnglkv.me>"]
license = "MIT"
readme = "README.md"
homepage = "https://git.ivnglkv.me/root/pssecret"
repository = "https://git.ivnglkv.me/root/pssecret"
documentation = "https://git.ivnglkv.me/root/pssecret/wiki"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Web Environment",
"Framework :: FastAPI",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application"
]
[tool.poetry.scripts]
pssecret = 'pssecret.cli:cli'
[tool.poetry.dependencies]
python = "^3.11"
click = "8.1.3"
fastapi = "0.78.0"
redis = "4.4.0"
uvicorn = "0.34.0"
hiredis = { version = "3.1.0", optional = true }
2024-12-25 17:35:01 +00:00
[tool.poetry.extras]
hiredis = ["hiredis"]
[tool.poetry.group.dev.dependencies]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"