-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
44 lines (39 loc) · 977 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[tool.poetry]
name = "notico"
version = "0.1.0"
description = ""
authors = ["MU-Software <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
boto3 = "^1.35.71"
chalice = {extras = ["cdkv2"], version = "^1.31.2"}
firebase-admin = "^6.6.0"
httpx = "^0.27.2"
pydantic = {extras = ["email"], version = "^2.10.2"}
pydantic-settings = "^2.6.1"
jinja2 = "^3.1.4"
python-telegram-bot = "^21.7"
[tool.poetry.group.dev.dependencies]
pre-commit = "^4.0.1"
pylint = "^3.3.1"
flake8 = "^7.1.1"
mypy = "^1.13.0"
black = "^24.10.0"
bandit = "^1.8.0"
isort = "^5.13.2"
refurb = "^2.0.0"
flake8-noqa = "^1.4.0"
flake8-bugbear = "^24.10.31"
boto3-stubs = {extras = ["essential", "ses"], version = "^1.35.71"}
pytest = "^8.3.3"
ipython = "^8.30.0"
aws-cdk-lib = "^2.171.1"
constructs = "^10.4.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.refurb]
python_version = "3.12"
quiet = true
ignore = [ "FURB184" ]