2024-12-25 17:35:01 +00:00
|
|
|
[tool.poetry]
|
2025-01-01 19:01:10 +00:00
|
|
|
name = "pssecret-server"
|
2025-01-08 21:31:12 +00:00
|
|
|
version = "1.1.0"
|
2024-12-25 17:35:01 +00:00
|
|
|
description = "API service for secrets sharing over network"
|
|
|
|
authors = ["Ivan Golikov <root@ivnglkv.me>"]
|
2025-01-01 18:20:30 +00:00
|
|
|
license = "BSD-3-Clause"
|
2024-12-25 17:35:01 +00:00
|
|
|
readme = "README.md"
|
2025-01-01 19:01:10 +00:00
|
|
|
homepage = "https://git.ivnglkv.me/root/pssecret-server"
|
|
|
|
repository = "https://git.ivnglkv.me/root/pssecret-server"
|
|
|
|
documentation = "https://git.ivnglkv.me/root/pssecret-server/wiki"
|
2024-12-25 17:35:01 +00:00
|
|
|
classifiers = [
|
2025-01-06 16:56:26 +00:00
|
|
|
"Development Status :: 5 - Production/Stable",
|
2024-12-25 17:35:01 +00:00
|
|
|
"Environment :: Web Environment",
|
|
|
|
"Framework :: FastAPI",
|
|
|
|
"Intended Audience :: Information Technology",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Programming Language :: Python :: 3.11",
|
2025-01-06 16:56:26 +00:00
|
|
|
"Programming Language :: Python :: 3.12",
|
|
|
|
"Programming Language :: Python :: 3.13",
|
2024-12-25 17:35:01 +00:00
|
|
|
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application"
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
2025-01-01 19:01:10 +00:00
|
|
|
pssecret-server = 'pssecret_server.cli:cli'
|
2024-12-25 17:35:01 +00:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.11"
|
2024-12-26 23:34:54 +00:00
|
|
|
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 }
|
2025-01-03 15:06:08 +00:00
|
|
|
cryptography = "^44"
|
2022-06-12 12:33:14 +00:00
|
|
|
|
2024-12-25 17:35:01 +00:00
|
|
|
[tool.poetry.extras]
|
|
|
|
hiredis = ["hiredis"]
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
2025-01-01 18:18:38 +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:18:38 +00:00
|
|
|
|
|
|
|
[tool.basedpyright]
|
|
|
|
reportUnknownMemberType = "none"
|
|
|
|
reportUnusedCallResult = "none"
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
asyncio_mode = "auto"
|
2025-01-08 21:22:25 +00:00
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
profile = "black"
|