mxroute_relay/pyproject.toml
hackish d841969e09 * chore: add .flake8 configuration file
* chore: add .pre-commit-config.yaml file with pre-commit hooks configuration
* chore: add mxroute_relay/__init__.py file
* chore: add pyproject.toml file with project metadata and dependencies configuration
2023-09-13 13:02:02 -07:00

30 lines
630 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"
SQLAlchemy = "^2.0.20"
flake8 = "^6.1.0"
[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