39 lines
1.1 KiB
TOML
39 lines
1.1 KiB
TOML
[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"
|
|
pydantic-settings = "2.7.0"
|
|
click = "8.1.8"
|
|
fastapi = { version = "0.115.6", extras = [ "standard" ] }
|
|
redis = "5.2.1"
|
|
hiredis = { version = "3.1.0", optional = true }
|
|
|
|
[tool.poetry.extras]
|
|
hiredis = ["hiredis"]
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|