Files
notifications-api/pyproject.toml

94 lines
2.2 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.12.1"
amqp = "==5.2.0"
arrow = "==1.3.0"
2022-10-20 14:06:16 -04:00
asn1crypto = "==1.5.1"
async-timeout = "==4.0.3"
attrs = "==23.1.0"
awscli = "^1.29.74"
bcrypt = "==4.0.1"
beautifulsoup4 = "==4.12.2"
2022-10-20 14:06:16 -04:00
billiard = "==3.6.4.0"
bleach = "^6.1.0"
blinker = "~=1.7"
boto3 = "^1.28.66"
botocore = "^1.31.66"
cachetools = "==5.3.2"
2022-10-20 14:06:16 -04:00
celery = {version = "==5.2.7", 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"
2022-10-20 14:06:16 -04:00
colorama = "==0.4.4"
defusedxml = "==0.7.1"
deprecated = "==1.2.14"
dnspython = "==2.4.2"
2022-10-20 14:06:16 -04:00
docopt = "==0.6.2"
docutils = "==0.16"
eventlet = "==0.33.3"
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"
2022-10-20 14:06:16 -04:00
itsdangerous = "==2.1.2"
jsonschema = {version = "==4.19.2", extras = ["format"]}
lxml = "==4.9.3"
marshmallow = "==3.20.1"
marshmallow-sqlalchemy = "==0.29.0"
newrelic = "*"
notifications-python-client = "==8.1.0"
notifications-utils = {git = "https://github.com/GSA/notifications-utils.git", develop = true}
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]
bandit = "*"
black = "^23.11.0"
cloudfoundry-client = "*"
exceptiongroup = "==1.1.3"
flake8 = "^6.1.0"
flake8-bugbear = "^23.9.16"
freezegun = "^1.2.2"
honcho = "*"
isort = "^5.12.0"
jinja2-cli = {version = "==0.8.2", extras = ["yaml"]}
moto = "==4.2.7"
pip-audit = "*"
pytest = "^7.4.3"
pytest-env = "^1.1.1"
pytest-mock = "^3.12.0"
pytest-cov = "^4.1.0"
pytest-xdist = "^3.3.1"
radon = "^6.0.1"
requests-mock = "^1.11.0"
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"