-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
37 lines (35 loc) · 956 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
[project]
name = ""
version = ""
description = ""
authors = [
{name = "Benyamin Ginzburg", email = "[email protected]"},
]
dependencies = [
"pillow",
"aiogram==2.24",
"zmanim",
"pydantic[dotenv]==1.10.9",
"redis==4.4.1",
"betterlogging",
"odmantic==0.9.2",
"motor",
"sentry-sdk==1.13.0",
"aiogram-metrics==1.0.4",
"setuptools",
"urllib3>=2.2.1",
]
requires-python = "==3.10.7"
license = {text = "-"}
[tool.pdm.scripts]
babel-extract = """pybabel extract
#zmanim_bot/texts/plural/units.py
zmanim_bot/texts/single/buttons.py
zmanim_bot/texts/single/headers.py
zmanim_bot/texts/single/helpers.py
zmanim_bot/texts/single/messages.py
zmanim_bot/texts/single/names.py
zmanim_bot/texts/single/zmanim.py
-o locales/zmanim_bot.pot -k __:1,2 --add-comments=NOTE"""
babel-init = "pybabel init -i locales/zmanim_bot.pot -d locales -D zmanim_bot -l "
babel-compile = "pybabel compile -d locales -D zmanim_bot"