-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (32 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
39 lines (32 loc) · 1.05 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
[project]
name = "kaizo"
version = "1.6.1"
description = "declarative YAML-based configuration parser"
authors = [{ name = "Mohammad Ghazanfari", email = "mgh.5225@gmail.com" }]
readme = "README.md"
license-files = ["LICENSE"]
requires-python = ">=3.12"
dependencies = ["pyyaml>=6.0.3", "typing-extensions>=4.15.0"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/NaughtFound/kaizo"
Source = "https://github.com/NaughtFound/kaizo"
Issues = "https://github.com/NaughtFound/kaizo/issues"
Changelog = "https://github.com/NaughtFound/kaizo/blob/main/CHANGELOG.md"
Documentation = "https://NaughtFound.github.io/kaizo"
[project.optional-dependencies]
hf = ["kaizo-hf"]
[dependency-groups]
test = ["pytest>=9.0.1"]
docs = ["Sphinx<=8.3.0", "sphinx-rtd-theme>=3.0.2"]
[build-system]
requires = ["setuptools >= 80.9.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["kaizo*"]