pssecret-server/pyproject.toml

53 lines
1.3 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"
pydantic-settings = "2.7.0"
2024-12-26 19:13:38 +00:00
click = "8.1.8"
fastapi = { version = "0.115.6", extras = [ "standard" ] }
redis = "5.2.1"
2024-12-25 17:35:01 +00:00
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]
2025-01-01 18:01:26 +00:00
pytest = ">=8.3.4,<9"
pytest-asyncio = "*"
polyfactory = ">=2.18,<3"
[tool.poetry.group.dev-extra.dependencies]
ipython = "^8.31.0"
2024-12-25 17:35:01 +00:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
2025-01-01 18:01:26 +00:00
[tool.basedpyright]
reportUnknownMemberType = "none"
reportUnusedCallResult = "none"
[tool.pytest.ini_options]
asyncio_mode = "auto"