Files
notifications-admin/pyproject.toml

68 lines
1.6 KiB
TOML
Raw Normal View History

2023-09-01 07:56:02 -07:00
[tool.poetry]
name = "notifications-admin"
version = "0.1.0"
description = ""
authors = ["Your Name <you@example.com>"]
readme = "README.md"
2022-11-08 09:44:09 -05:00
2023-09-01 07:56:02 -07:00
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
2023-04-26 11:24:01 -04:00
ago = "~=0.0.95"
blinker = "~=1.7"
exceptiongroup = "==1.2.0"
flask = "~=2.3"
2023-04-26 11:24:01 -04:00
flask-basicauth = "~=0.2"
flask-login = "^0.6"
flask-talisman = "*"
flask-wtf = "^1.2"
govuk-bank-holidays = "==0.13"
2023-09-05 11:31:22 -04:00
govuk-frontend-jinja = {git = "https://github.com/alphagov/govuk-frontend-jinja.git", tag = "v0.5.8-alpha"}
gunicorn = {version = "==21.2.0", extras = ["eventlet"]}
humanize = "~=4.8"
2023-04-26 11:24:01 -04:00
itsdangerous = "~=2.1"
jinja2 = "~=3.1"
newrelic = "*"
notifications-python-client = "==8.1.0"
notifications-utils = {git = "https://github.com/GSA/notifications-utils.git"}
2022-11-08 09:44:09 -05:00
pyexcel = "==0.7.0"
pyexcel-io = "==0.6.6"
pyexcel-ods3 = "==0.6.1"
pyexcel-xls = "==0.7.0"
pyexcel-xlsx = "==0.6.0"
openpyxl = "==3.0.10"
pyproj = "==3.6.1"
python-dotenv = "==1.0.0"
pytz = "==2023.3.post1"
2022-11-08 09:44:09 -05:00
rtreelib = "==0.2.0"
werkzeug = "^3.0.1"
wtforms = "~=3.1"
2022-11-08 09:44:09 -05:00
2023-09-01 07:56:02 -07:00
[tool.poetry.group.dev.dependencies]
bandit = "*"
beautifulsoup4 = "^4.12.2"
black = "^23.11.0"
coverage = "*"
freezegun = "^1.2.2"
flake8 = "^6.1.0"
flake8-bugbear = "^23.9.16"
flake8-print = "^5.0.0"
flake8-pytest-style = "^1.7.2"
isort = "^5.12.0"
2022-11-08 09:44:09 -05:00
jinja2-cli = {version = "==0.8.2", extras = ["yaml"]}
moto = "^4.2"
2022-11-08 09:44:09 -05:00
pip-audit = "*"
pytest = "^7.4.3"
pytest-env = "^1.1.1"
pytest-mock = "^3.12.0"
pytest-playwright = "^0.4.3"
pytest-xdist = "^3.4.0"
radon = "^6.0.1"
requests-mock = "^1.11.0"
vulture = "^2.10"
2022-11-08 09:44:09 -05:00
2023-09-01 07:56:02 -07:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"