Files
notifications-api/pyproject.toml
T

126 lines
2.8 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"
2026-02-11 14:17:53 +00:00
alembic = "==1.18.4"
2025-02-26 22:03:30 +00:00
amqp = "==5.3.1"
beautifulsoup4 = "==4.14.3"
2025-06-02 13:46:58 -04:00
boto3 = "^1.38.27"
botocore = "^1.38.27"
2026-02-12 14:59:13 +00:00
cachetools = "==7.0.1"
2026-01-06 15:41:20 +00:00
celery = {version = "==5.6.2", extras = ["redis"]}
2022-12-08 13:46:07 -05:00
certifi = ">=2022.12.7"
2025-09-11 14:19:09 +00:00
cffi = "==2.0.0"
2025-10-14 21:07:50 +00:00
charset-normalizer = "^3.4.4"
2025-11-18 09:43:02 -05:00
click = "==8.3.1"
2024-04-04 16:18:57 -07:00
click-didyoumean = "==0.3.1"
2025-06-25 21:47:55 +00:00
click-plugins = "==1.1.1.2"
2023-09-18 16:47:23 +00:00
click-repl = "==0.3.0"
2025-11-02 20:14:59 +00:00
deprecated = "==1.3.1"
2026-06-02 08:06:49 -07:00
dulwich = "^1.2.5"
2025-07-28 08:52:02 -07:00
gevent = "==25.5.1"
2024-01-05 10:35:14 -08:00
expiringdict = "==1.2.2"
2025-05-13 20:47:30 +00:00
flask = "~=3.1"
2022-10-20 14:06:16 -04:00
flask-bcrypt = "==1.0.1"
2025-04-23 22:08:21 +00:00
flask-migrate = "==4.1.0"
2022-10-20 14:06:16 -04:00
flask-redis = "==0.4.0"
flask-sqlalchemy = "^3.1.1"
2026-02-16 15:38:20 -05:00
gunicorn = {version = "==25.1.0", extras = ["gevent"]}
2023-11-06 14:31:27 +00:00
iso8601 = "==2.1.0"
jsonschema = {version = "==4.26.0", extras = ["format"]}
2026-04-21 22:49:51 +00:00
lxml = "==6.1.0"
marshmallow = "^4.2.2"
marshmallow-sqlalchemy = "^1.4.2"
2026-02-26 16:53:52 +00:00
newrelic = "^11.5.0"
2026-01-23 18:16:08 +00:00
packaging = "==26.0"
2023-08-31 11:00:55 -07:00
poetry-dotenv-plugin = "==0.2.0"
2025-10-10 21:05:32 +00:00
psycopg2-binary = "==2.9.11"
2026-06-02 08:09:11 -07:00
pyjwt = "==2.13.0"
2026-04-22 08:56:48 -07:00
python-dotenv = "==1.2.2"
sqlalchemy = "==2.0.47"
2026-01-20 10:22:11 -08:00
werkzeug = "^3.1.5"
2026-02-26 17:02:19 +00:00
faker = "^40.5.1"
2025-04-07 15:07:43 +00:00
async-timeout = "^5.0.1"
2025-10-28 12:25:03 +00:00
bleach = "^6.3.0"
2025-02-13 15:41:47 +00:00
geojson = "^3.2.0"
2026-02-03 14:38:18 +00:00
numpy = "^2.4.2"
2024-05-16 10:17:45 -04:00
ordered-set = "^4.1.0"
phonenumbers = "^9.0.24"
python-json-logger = "^4.0.0"
regex = "^2026.2.19"
2025-09-24 18:19:07 -04:00
shapely = "^2.1.2"
2024-05-16 10:17:45 -04:00
smartypants = "^2.0.1"
2026-05-07 07:18:13 -07:00
mistune = "^3.2.1"
2025-02-10 21:13:53 +00:00
blinker = "^1.9.0"
2026-04-08 23:00:11 +00:00
cryptography = "^46.0.7"
2026-06-02 08:06:49 -07:00
idna = "^3.15"
2026-01-26 15:20:37 +00:00
jmespath = "^1.1.0"
2025-10-01 16:10:26 +00:00
markupsafe = "^3.0.3"
2026-05-07 07:23:10 -07:00
mako = "^1.3.12"
2026-01-23 12:41:04 -05:00
pycparser = "^3.0"
2024-05-17 18:08:41 -04:00
python-dateutil = "^2.9.0.post0"
2025-09-29 15:23:08 +00:00
pyyaml = "^6.0.3"
s3transfer = "^0.16.0"
2024-05-17 18:08:41 -04:00
six = "^1.16.0"
2026-01-20 10:01:28 -08:00
urllib3 = "^2.6.3"
2024-05-17 18:08:41 -04:00
webencodings = "^0.5.1"
itsdangerous = "^2.2.0"
2025-03-06 04:48:17 +00:00
jinja2 = "^3.1.6"
2025-12-03 09:47:25 -05:00
redis = "^6.4.0"
2026-03-26 08:49:16 -07:00
requests = "^2.33.0"
virtualenv = "^21.1.0"
2025-05-28 13:47:35 -04:00
marshmallow-enum = "^1.5.1"
awscli = "^1.44.38"
typing-extensions = "^4.15.0"
2026-04-01 22:16:05 +00:00
aiohttp = "^3.13.4"
2025-12-09 09:48:18 -05:00
pytest = "^9.0.2"
2026-01-20 10:11:06 -08:00
filelock = ">=3.20.3"
pyasn1 = ">=0.6.3"
2026-01-21 09:52:26 -08:00
jaraco-context = ">=6.1.0"
2026-01-22 11:25:15 -08:00
wheel = ">=0.46.2"
2022-10-20 14:06:16 -04:00
2023-08-31 11:00:55 -07:00
[tool.poetry.group.dev.dependencies]
bandit = "*"
2026-04-06 15:04:55 -04:00
black = "^26.3.1"
cyclonedx-python-lib = "^11.6.0"
cloudfoundry-client = "*"
exceptiongroup = "==1.3.1"
2025-06-20 21:25:43 +00:00
flake8 = "^7.3.0"
flake8-bugbear = "^25.11.29"
2025-08-12 17:19:46 +00:00
freezegun = "^1.5.5"
hypothesis = "^6.151.9"
honcho = "*"
2026-02-26 17:10:43 +00:00
isort = "^8.0.0"
2026-01-20 20:24:28 +00:00
jinja2-cli = {version = "==1.0.0", extras = ["yaml"]}
2026-02-10 16:25:41 +00:00
moto = "==5.1.21"
pip-audit = "*"
2025-12-18 17:41:16 +00:00
pre-commit = "^4.5.1"
2025-12-09 09:48:18 -05:00
pytest = "^9.0.2"
2026-02-18 08:19:44 -05:00
pytest-env = "^1.5.0"
2025-09-16 21:59:12 +00:00
pytest-mock = "^3.15.1"
2025-09-11 13:53:07 +00:00
pytest-cov = "^7.0.0"
2025-07-01 21:26:31 +00:00
pytest-xdist = "^3.8.0"
2023-10-30 16:07:36 -04:00
radon = "^6.0.1"
requests-mock = "^1.11.0"
setuptools = "^82.0.0"
2024-04-11 10:18:14 -06:00
sqlalchemy-utils = "^0.41.2"
2023-10-30 16:07:36 -04:00
vulture = "^2.10"
2024-05-20 11:16:37 -04:00
detect-secrets = "^1.5.0"
2025-05-06 10:02:42 -04:00
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"
2025-05-06 10:02:42 -04:00
[tool.poetry.plugins."poetry.application.plugin"]
dotenv = "poetry_dotenv_plugin.plugin:PoetryDotenvPlugin"