mxroute_relay/pyproject.toml
hackish ed16c81304 * chore(poetry.lock): update dnspython to version 2.4.2
* chore(poetry.lock): update email-validator to version 2.0.0.post2
* chore(pyproject.toml): add pydantic with email extras
2023-09-13 13:13:38 -07:00

32 lines
695 B
TOML

[tool.poetry]
name = "mxroute-relay"
version = "0.0.1"
description = "Firefox Relay clone for MXRoute forwarders"
authors = ["Darryl Nixon <git@nixon.mozmail.com>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "mxroute_relay" }]
[tool.poetry.dependencies]
python = "^3.10"
starlette-admin = "^0.11.2"
starlette = "^0.31.1"
flake8 = "^6.1.0"
sqlmodel = "^0.0.8"
uvicorn = "^0.23.2"
pydantic = {version = "^1", extras = ["email"]}
[tool.poetry.group.dev.dependencies]
black = "^23.9.1"
isort = "^5.12.0"
bandit = "^1.7.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.bandit]
exclude_dirs = ["/docs"]
[tool.black]
line-length = 160