-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (32 loc) · 947 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
[project]
name = "cpn-telegram-bot"
version = "0.0.0"
description = "Telegram bot for cpn"
readme = "README.md"
authors = [
{ name = "KevinNitroG", email = "kevinnitro@duck.com" },
{ name = "NTGNguyen", email = 'ntgnguyen@duck.com' },
{ name = "WeeCiCi", email = 'wicici310@gmail.com' },
]
maintainers = [
{ name = "KevinNitroG", email = "kevinnitro@duck.com" },
{ name = "NTGNguyen", email = 'ntgnguyen@duck.com' },
{ name = "WeeCiCi", email = 'wicici310@gmail.com' },
]
requires-python = ">=3.13"
dependencies = [
"beanie>=1.29.0",
"cpn-core[ocr,curl]==0.5.0",
"pydantic>=2.10.5",
"python-dotenv>=1.0.1",
"python-telegram-bot>=21.10",
]
[project.scripts]
cpn-telegram-bot = "cpn_telegram_bot:__main__.main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/cpn_telegram_bot"]
[dependency-groups]
dev = ["pre-commit>=4.0.1", "commitizen>=4.1.0"]