-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (51 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
60 lines (51 loc) · 1.67 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[tool.poetry]
name = "mistune-telegram"
version = "0.5.0"
description = "Plugin mistune for converting markdown into Telegram format."
authors = ["impocode <impocode@impocode.one>"]
maintainers = ["impocode <impocode@impocode.one>"]
license= "MIT"
readme = "readme.md"
keywords = ["mistune", "telegram", "markdown", "markdown-parser"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
homepage = "https://github.com/impocode/mistune-telegram"
repository = "https://github.com/impocode/mistune-telegram"
documentation = "https://github.com/impocode/mistune-telegram"
[tool.poetry.dependencies]
python = "^3.8"
mistune = "^3.0.2"
[tool.poetry.group.dev.dependencies]
ruff = "^0.8.4"
pytest = "^8.3.4"
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = [
"F", # pyflakes
"E", # pycodestyle errors
"W", # pycodestyle warnings
"I", # isort
"D101", # pydocstyle undocumented-public-class
"D102", # pydocstyle undocumented-public-method
"D103", # pydocstyle undocumented-public-function
"D105", # pydocstyle undocumented-magic-method
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"ANN", # flake8-annotations
]
ignore = [
"ANN401", # any-type
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"