-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (61 loc) · 1.89 KB
/
pyproject.toml
File metadata and controls
69 lines (61 loc) · 1.89 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
61
62
63
64
65
66
67
68
69
[project]
name = "mistune-slack"
version = "0.1.4"
description = "Convert Markdown to Slack blocks - useful for chatbots"
readme = "README.md"
authors = [
{ name = "Ryan Munro", email = "[email protected]" },
]
requires-python = ">=3.11,<4"
dependencies = ["mistune>=3,<4", "typing-extensions>=4.13.2"]
license = { text = "MIT" }
keywords = ["slack", "markdown", "mistune", "block-kit", "renderer"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries",
"Topic :: Text Processing :: Markup",
]
[project.urls]
Homepage = "https://github.com/Submersible/python-mistune-slack"
Repository = "https://github.com/Submersible/python-mistune-slack"
Documentation = "https://github.com/Submersible/python-mistune-slack#readme"
"Bug Tracker" = "https://github.com/Submersible/python-mistune-slack/issues"
[project.scripts]
test = "pytest:main"
[dependency-groups]
dev = [
"ipython>=9.2.0",
"jupyter>=1.1.1",
"jupyterlab>=4.4.2",
"loguru>=0.7.3",
"pytest>=8.3.5",
"rich[jupyter]>=14.0.0",
"ruff>=0.11.8",
"tqdm>=4.67.1",
"wat-inspector>=0.4.3",
]
[tool.ruff]
extend-include = ["*.ipynb"]
line-length = 120
respect-gitignore = false
target-version = "py311"
[tool.ruff.lint]
extend-select = ["I"]
per-file-ignores = { "*.ipynb" = ["F811", "E402", "F841", "F401"] }
[tool.pytest.ini_options]
addopts = "--doctest-modules"
python_files = "*.py"
[tool.pyright]
reportMissingModuleSource = false
reportPrivateImportUsage = false
typeCheckingMode = "standard"
include = ["src"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"