-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (31 loc) · 749 Bytes
/
pyproject.toml
File metadata and controls
33 lines (31 loc) · 749 Bytes
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
[project]
name = "anki-code-highlight"
version = "0.1.0"
description = "Automatic code highlighting for Anki"
readme = "README.md"
requires-python = ">=3.9"
authors = [
{ name = "midrare", email = "midrare9@gmail.com" },
]
license = { file = "LICENSE.md" }
keywords = [ "anki" ]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
dev = [
"pre-commit >= 3.5.0",
"pylint >= 3.0.2",
"yapf >= 0.40.2",
"aqt >= 23.12.1",
]
test = [
"pytest >= 7.4.3",
"pytest-cov >= 4.1.0",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"