-
Notifications
You must be signed in to change notification settings - Fork 214
/
pyproject.toml
63 lines (55 loc) · 1.44 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
[tool.pdm]
distribution = true
[tool.pdm.build]
includes = []
[tool.pdm.dev-dependencies]
dev = [
"pytest>=8.2.0",
"pytest-mock>=3.14.0",
"pytest-watch>=4.2.0",
"mkdocs>=1.6.0",
"mkdocs-material>=9.5.21",
"black>=24.4.2",
"mypy>=1.10.0",
"types-python-slugify>=8.0.2.20240310",
"types-PyYAML>=6.0.12.20240311",
"types-bleach>=6.1.0.20240331",
"types-Markdown>=3.6.0.20240316",
"types-jsonschema>=4.22.0.20240501",
"pylint>=3.1.0",
"yapf>=0.40.2",
"pylint-pytest>=1.1.7",
"pyfakefs>=5.4.1",
"pydoc-markdown>=4.7.0",
"snapshottest>=0.6.0",
"mkdocs-mermaid2-plugin>=1.1.1",
"tqdm>=4.66.4",
]
[tool.pdm.scripts]
export-course = {call = "librelingo_json_export.cli:main"}
install-courses = {call = "librelingo_scripts.install_courses:main"}
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "librelingo-kit"
version = "0.1.0"
description = "a set of tools and libraries for building applications using librelingo courses"
authors = [
{name = "Dániel Kántor", email = "git@daniel-kantor.com"},
]
requires-python = "<3.11,>=3.8"
readme = "README.md"
license = {text = "AGPL-3.0"}
dependencies = [
"python-slugify>=8.0.4",
"editdistance>=0.8.1",
"click>=8.1.7",
"regex>=2024.4.28",
"pyyaml>=6.0.1",
"Markdown>=3.6",
"html2markdown>=0.1.7",
"bleach>=6.1.0",
"bleach-allowlist>=1.0.3",
"jsonschema>=4.22.0",
]