-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
41 lines (34 loc) · 847 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
[project]
name = "telegramify-markdown"
version = "0.4.0"
description = "Makes it easy to send Markdown in Telegram MarkdownV2 style"
authors = [
{ name = "sudoskys", email = "coldlando@hotmail.com" },
]
dependencies = [
"mistletoe==1.4.0",
"loguru>=0.7.3",
]
requires-python = ">=3.9"
readme = "README.md"
license = { text = "MIT" }
[project.optional-dependencies]
mermaid = [
"Pillow>=10.4.0",
"aiohttp>=3.10.11",
]
tests = [
'pytest < 6',
"pytelegrambotapi>=4.22.0",
"python-dotenv>=1.0.1",
'mock >= 1.0.1, < 4; python_version < "3.4"',
]
[project.urls]
repository = "https://github.com/sudoskys/telegramify-markdown"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.scripts]
test = "python -m unittest discover -s ./tests -p *_test.py"