-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (31 loc) · 938 Bytes
/
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
[project]
name = "cpn-docs"
version = "0.0.0"
authors = [
{ name = "KevinNitroG", email = "[email protected]" },
{ name = "NTGNguyen", email = '[email protected]' },
{ name = "WeeCiCi", email = '[email protected]' },
]
maintainers = [
{ name = "KevinNitroG", email = "[email protected]" },
{ name = "NTGNguyen", email = '[email protected]' },
{ name = "WeeCiCi", email = '[email protected]' },
]
description = "Doc website for check-phat-nguoi"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"cpn-cli",
"json-schema-for-humans>=1.3.4",
"mkdocs-git-revision-date-localized-plugin>=1.3.0",
"mkdocs-material>=9.5.50",
]
[project.scripts]
generate-schemas = "cpn_generate_schemas:__main__.main"
[tool.hatch.build.targets.wheel]
packages = ["src/cpn_generate_schemas"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = ["pre-commit>=4.0.1"]