-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (39 loc) · 985 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
36
37
38
39
40
41
42
43
44
45
[project]
name = "doclearn"
version = "1.4.1"
description = "A project that allows AI to learn and update through GitHub documentation."
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.112.1",
"httpx>=0.27.0",
"uvicorn>=0.30.6",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/doclearn"]
[tool.hatch.build.targets.sdist]
packages = ["src/doclearn"]
[tool.hatch.metadata]
name = "doclearn"
version = "0.1.0"
description = "A project that allows AI to learn and update through GitHub documentation."
authors = ["Caio Barbieri <caio@lombello.com>"]
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
[tool.uv]
dev-dependencies = [
"cz-conventional-gitmoji>=0.3.3",
]
[tool.commitizen]
name = "cz_gitmoji"
version = "1.4.1"
tag_format = "v$version"
version_files = [
"pyproject.toml:version",
]
changelog_file = "CHANGELOG.md"