kiwi-vpn/api/pyproject.toml

27 lines
639 B
TOML
Raw Normal View History

[tool.poetry]
2022-03-28 23:06:11 +00:00
authors = ["Jörn-Michael Miehe <40151420+ldericher@users.noreply.github.com>"]
description = ""
name = "kiwi-vpn-api"
version = "0.1.0"
[tool.poetry.dependencies]
python = "^3.10"
2022-03-28 23:06:11 +00:00
2022-03-14 00:10:10 +00:00
fastapi = "^0.75.0"
passlib = {extras = ["argon2", "bcrypt"], version = "^1.7.4"}
2022-03-28 23:06:11 +00:00
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
python-multipart = "^0.0.5"
2022-03-27 01:17:48 +00:00
sqlmodel = "^0.0.6"
2022-03-28 23:06:11 +00:00
uvicorn = "^0.17.6"
2022-04-05 00:42:55 +00:00
cryptography = "^36.0.2"
[tool.poetry.dev-dependencies]
pytest = "^7.1.0"
[tool.poetry.scripts]
kiwi-vpn-api = "kiwi_vpn_api.main:main"
[build-system]
build-backend = "poetry.core.masonry.api"
2022-03-28 23:06:11 +00:00
requires = ["poetry-core>=1.0.0"]