-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
79 lines (70 loc) · 2.29 KB
/
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
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
70
71
72
73
74
75
76
77
78
79
[tool.poetry]
name = "mkdocs-asciinema-player"
version = "0.15.1"
description = "A Mkdocs Plugin to include asciinema player in your documentation."
license = "MIT"
authors = [
"Philippe-André De Carvalho <philippe.andre.decarvalho@gmail.com>"
]
maintainers = [
"Philippe-André De Carvalho <philippe.andre.decarvalho@gmail.com>"
]
readme = "README.md"
homepage = "https://github.com/pa-decarvalho/mkdocs-asciinema-player"
repository = "https://github.com/pa-decarvalho/mkdocs-asciinema-player"
documentation = "https://pa-decarvalho.github.io/mkdocs-asciinema-player/"
keywords = ["mkdocs", "documentation", "asciinema", "asciinema-player"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Operating System :: POSIX",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Topic :: Software Development :: Build Tools",
"Natural Language :: English",
"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",
"Topic :: Utilities",
"Topic :: Software Development :: Documentation",
]
packages = [
{include = "mkdocs_asciinema_player", from = "src"},
]
[tool.poetry.dependencies]
python = "^3.9"
mkdocs = "^1.6.1"
[tool.poetry.group.dev.dependencies]
asciinema = "^2.4.0"
commitizen = "^3.30.0"
requests = "^2.32.3"
pyyaml = "^6.0.2"
types-pyyaml = "^6.0.12.20240917"
types-requests = "^2.32.0.20241016"
[tool.poetry.group.lint.dependencies]
bandit = "^1.7.10"
djlint = "^1.35.3"
mypy = "^1.13.0"
yamllint = "^1.35.1"
ruff = "^0.7.1"
[tool.poetry.group.test.dependencies]
pytest = "^8.3.3"
[tool.poetry.group.docs.dependencies]
mkdocs-awesome-pages-plugin = "^2.9.3"
[tool.poetry.plugins."mkdocs.plugins"]
asciinema-player = "mkdocs_asciinema_player.plugin:AsciinemaPlayerPlugin"
[tool.poetry.urls]
"Issues" = "https://github.com/pa-decarvalho/mkdocs-asciinema-player/issues"
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "$version"
version_scheme = "pep440"
version_provider = "poetry"
update_changelog_on_bump = true
major_version_zero = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"