Files
notifications-api/pyproject.toml

122 lines
2.7 KiB
TOML
Raw Normal View History

2023-08-31 11:00:55 -07:00
[tool.poetry]
name = "notifications-api"
2025-05-28 07:11:15 -07:00
package-mode = false
2023-08-31 11:00:55 -07:00
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]
2025-08-28 07:26:45 -07:00
python = "^3.13.2"
alembic = "==1.16.5"
amqp = "==5.3.1"
beautifulsoup4 = "==4.14.2"
2025-06-02 13:46:58 -04:00
boto3 = "^1.38.27"
botocore = "^1.38.27"
cachetools = "==6.2.0"
celery = {version = "==5.5.3", extras = ["redis"]}
2022-12-08 13:46:07 -05:00
certifi = ">=2022.12.7"
cffi = "==2.0.0"
charset-normalizer = "^3.4.3"
click = "==8.3.0"
click-datetime = "==0.4.0"
2024-04-04 16:18:57 -07:00
click-didyoumean = "==0.3.1"
click-plugins = "==1.1.1.2"
click-repl = "==0.3.0"
deprecated = "==1.2.18"
2025-07-28 08:52:02 -07:00
gevent = "==25.5.1"
2024-01-05 10:35:14 -08:00
expiringdict = "==1.2.2"
flask = "~=3.1"
2022-10-20 14:06:16 -04:00
flask-bcrypt = "==1.0.1"
flask-migrate = "==4.1.0"
2022-10-20 14:06:16 -04:00
flask-redis = "==0.4.0"
flask-sqlalchemy = "^3.1.1"
2025-07-28 08:52:02 -07:00
gunicorn = {version = "==23.0.0", extras = ["gevent"]}
iso8601 = "==2.1.0"
jsonschema = {version = "==4.25.1", extras = ["format"]}
lxml = "==6.0.2"
marshmallow = "^4.0.1"
marshmallow-sqlalchemy = "^1.4.2"
newrelic = "^11.0.1"
packaging = "==25.0"
2023-08-31 11:00:55 -07:00
poetry-dotenv-plugin = "==0.2.0"
psycopg2-binary = "==2.9.11"
pyjwt = "==2.10.1"
python-dotenv = "==1.1.1"
sqlalchemy = "==2.0.43"
werkzeug = "^3.0.6"
faker = "^37.8.0"
async-timeout = "^5.0.1"
bleach = "^6.1.0"
geojson = "^3.2.0"
numpy = "^2.3.3"
ordered-set = "^4.1.0"
phonenumbers = "^9.0.15"
python-json-logger = "^4.0.0"
regex = "^2025.9.18"
shapely = "^2.1.2"
smartypants = "^2.0.1"
mistune = "^3.1.4"
blinker = "^1.9.0"
cryptography = "^46.0.2"
idna = "^3.7"
jmespath = "^1.0.1"
markupsafe = "^3.0.3"
pycparser = "^2.23"
python-dateutil = "^2.9.0.post0"
pyyaml = "^6.0.3"
s3transfer = "^0.13.1"
six = "^1.16.0"
2025-06-25 13:44:29 -07:00
urllib3 = "^2.5.0"
webencodings = "^0.5.1"
itsdangerous = "^2.2.0"
jinja2 = "^3.1.6"
redis = "^5.0.8"
requests = "^2.32.5"
virtualenv = "^20.35.0"
2025-05-28 13:47:35 -04:00
marshmallow-enum = "^1.5.1"
2025-06-17 12:15:55 -04:00
awscli = "^1.40.36"
typing-extensions = "^4.15.0"
aiohttp = "^3.12.15"
pytest = "^8.4.2"
2022-10-20 14:06:16 -04:00
2023-08-31 11:00:55 -07:00
[tool.poetry.group.dev.dependencies]
awscli = "^1.33.32"
bandit = "*"
black = "^25.9.0"
cyclonedx-python-lib = "^11.1.0"
cloudfoundry-client = "*"
exceptiongroup = "==1.3.0"
flake8 = "^7.3.0"
flake8-bugbear = "^24.12.12"
freezegun = "^1.5.5"
hypothesis = "^6.140.2"
honcho = "*"
isort = "^6.1.0"
jinja2-cli = {version = "==0.8.2", extras = ["yaml"]}
moto = "==5.1.14"
pip-audit = "*"
pre-commit = "^4.3.0"
pytest = "^8.4.2"
pytest-env = "^1.2.0"
pytest-mock = "^3.15.1"
pytest-cov = "^7.0.0"
pytest-xdist = "^3.8.0"
radon = "^6.0.1"
requests-mock = "^1.11.0"
setuptools = "^80.9.0"
sqlalchemy-utils = "^0.41.2"
vulture = "^2.10"
detect-secrets = "^1.5.0"
poetry-dotenv-plugin = "^0.2.0"
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"
[tool.poetry.plugins."poetry.application.plugin"]
dotenv = "poetry_dotenv_plugin.plugin:PoetryDotenvPlugin"