Files
notifications-api/pyproject.toml

83 lines
1.9 KiB
TOML
Raw Normal View History

2023-08-31 11:00:55 -07:00
[tool.poetry]
name = "notifications-api"
version = "0.1.0"
description = "Notify.gov backend"
authors = ["Your Name <you@example.com>"]
readme = "README.md"
2022-10-20 14:06:16 -04:00
2023-08-31 11:00:55 -07:00
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
alembic = "==1.13.1"
amqp = "==5.2.0"
beautifulsoup4 = "==4.12.3"
boto3 = "^1.29.6"
botocore = "^1.32.6"
cachetools = "==5.3.2"
celery = {version = "==5.3.6", extras = ["redis"]}
2022-12-08 13:46:07 -05:00
certifi = ">=2022.12.7"
cffi = "==1.16.0"
charset-normalizer = "^3.1.0"
click = "==8.1.7"
2022-10-20 14:06:16 -04:00
click-datetime = "==0.2"
click-didyoumean = "==0.3.0"
click-plugins = "==1.1.1"
click-repl = "==0.3.0"
deprecated = "==1.2.14"
eventlet = "==0.34.3"
2024-01-05 10:35:14 -08:00
expiringdict = "==1.2.2"
2023-05-01 21:40:36 -04:00
flask = "~=2.3"
2022-10-20 14:06:16 -04:00
flask-bcrypt = "==1.0.1"
flask-marshmallow = "==0.14.0"
flask-migrate = "==4.0.5"
2022-10-20 14:06:16 -04:00
flask-redis = "==0.4.0"
flask-sqlalchemy = "==3.0.5"
gunicorn = {version = "==21.2.0", extras = ["eventlet"]}
iso8601 = "==2.1.0"
jsonschema = {version = "==4.20.0", extras = ["format"]}
lxml = "==5.1.0"
marshmallow = "==3.20.2"
marshmallow-sqlalchemy = "==0.30.0"
newrelic = "*"
notifications-python-client = "==8.2.0"
notifications-utils = {git = "https://github.com/GSA/notifications-utils.git"}
2022-10-20 14:06:16 -04:00
oscrypto = "==1.3.0"
packaging = "==23.2"
2023-08-31 11:00:55 -07:00
poetry-dotenv-plugin = "==0.2.0"
psycopg2-binary = "==2.9.9"
pyjwt = "==2.8.0"
python-dotenv = "==1.0.0"
2022-10-20 14:06:16 -04:00
sqlalchemy = "==1.4.40"
werkzeug = "^3.0.1"
2022-10-20 14:06:16 -04:00
2023-08-31 11:00:55 -07:00
[tool.poetry.group.dev.dependencies]
2023-11-13 11:35:34 -05:00
awscli = "^1.29.74"
bandit = "*"
black = "^23.12.1"
cloudfoundry-client = "*"
exceptiongroup = "==1.2.0"
flake8 = "^6.1.0"
flake8-bugbear = "^24.1.17"
freezegun = "^1.4.0"
honcho = "*"
isort = "^5.13.2"
jinja2-cli = {version = "==0.8.2", extras = ["yaml"]}
moto = "==4.2.13"
pip-audit = "*"
pre-commit = "^3.6.0"
pytest = "^7.4.4"
pytest-env = "^1.1.3"
pytest-mock = "^3.12.0"
pytest-cov = "^4.1.0"
pytest-xdist = "^3.5.0"
radon = "^6.0.1"
requests-mock = "^1.11.0"
setuptools = "^69.0.3"
vulture = "^2.10"
2022-10-20 14:06:16 -04:00
2023-08-31 11:00:55 -07:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"