mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-10 15:22:24 -05:00
84 lines
2.0 KiB
TOML
84 lines
2.0 KiB
TOML
[tool.poetry]
|
|
name = "notifications-api"
|
|
version = "0.1.0"
|
|
description = "Notify.gov backend"
|
|
authors = ["Your Name <you@example.com>"]
|
|
readme = "README.md"
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.12.2"
|
|
alembic = "==1.13.1"
|
|
amqp = "==5.2.0"
|
|
beautifulsoup4 = "==4.12.3"
|
|
boto3 = "^1.29.6"
|
|
botocore = "^1.32.6"
|
|
cachetools = "==5.3.3"
|
|
celery = {version = "==5.3.6", extras = ["redis"]}
|
|
certifi = ">=2022.12.7"
|
|
cffi = "==1.16.0"
|
|
charset-normalizer = "^3.1.0"
|
|
click = "==8.1.7"
|
|
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.35.2"
|
|
expiringdict = "==1.2.2"
|
|
flask = "~=2.3"
|
|
flask-bcrypt = "==1.0.1"
|
|
flask-marshmallow = "==0.14.0"
|
|
flask-migrate = "==4.0.5"
|
|
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 = "==9.0.0"
|
|
notifications-utils = {git = "https://github.com/GSA/notifications-utils.git", rev="341886d"}
|
|
oscrypto = "==1.3.0"
|
|
packaging = "==23.2"
|
|
poetry-dotenv-plugin = "==0.2.0"
|
|
psycopg2-binary = "==2.9.9"
|
|
pyjwt = "==2.8.0"
|
|
python-dotenv = "==1.0.0"
|
|
sqlalchemy = "==1.4.40"
|
|
werkzeug = "^3.0.1"
|
|
faker = "^23.3.0"
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
awscli = "^1.29.74"
|
|
bandit = "*"
|
|
black = "^23.12.1"
|
|
cloudfoundry-client = "*"
|
|
exceptiongroup = "==1.2.0"
|
|
flake8 = "^7.0.0"
|
|
flake8-bugbear = "^24.1.17"
|
|
freezegun = "^1.4.0"
|
|
honcho = "*"
|
|
isort = "^5.13.2"
|
|
jinja2-cli = {version = "==0.8.2", extras = ["yaml"]}
|
|
moto = "==5.0.3"
|
|
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"
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|