kiwi-vpn/api/pyproject.toml

26 lines
638 B
TOML
Raw Normal View History

[tool.poetry]
name = "kiwi-vpn-api"
version = "0.1.0"
description = ""
authors = ["Jörn-Michael Miehe <40151420+ldericher@users.noreply.github.com>"]
[tool.poetry.dependencies]
python = "^3.10"
2022-03-14 00:10:10 +00:00
fastapi = "^0.75.0"
python-multipart = "^0.0.5"
uvicorn = "^0.17.6"
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
passlib = {extras = ["argon2", "bcrypt"], version = "^1.7.4"}
2022-03-17 17:06:00 +00:00
SQLAlchemy = "^1.4.32"
2022-03-22 00:34:06 +00:00
pyOpenSSL = "^22.0.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1.0"
[tool.poetry.scripts]
kiwi-vpn-api = "kiwi_vpn_api.main:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"