-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
66 lines (56 loc) · 1.79 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
62
63
64
65
66
[project]
name = "chat-completion-md"
version = "0.1.0"
description = "Convert OpenAI chat completion request to markdown and vice versa"
readme = "README.md"
authors = [{ name = "S1M0N38", email = "bertolottosimone@gmail.com" }]
requires-python = ">=3.11"
dependencies = [
"pydantic>=2.10.4",
"pyyaml>=6.0.2",
]
classifiers = [
"Development Status :: 1 - Planning",
"Framework :: Pytest",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Homepage = "https://github.com/S1M0N38/chat-completion-md"
Issues = "https://github.com/S1M0N38/chat-completion-md/issues"
Repository = "https://github.com/S1M0N38/chat-completion-md"
Changelog = "https://github.com/S1M0N38/chat-completion-md/blob/main/CHANGELOG.md"
[project.scripts]
chat_completion_md = "chat_completion_md.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
publish-url = "https://upload.pypi.org/legacy/"
[tool.ruff]
line-length = 88
indent-width = 4
extend-include = ["*.ipynb"]
lint.task-tags = ["FIX", "TODO", "HACK", "WARN", "PERF", "NOTE", "TEST"]
[tool.ruff.format]
quote-style = "double"
[tool.pyright]
venvPath = "."
venv = ".venv"
typeCheckingMode = "basic"
[tool.commitizen]
tag_format = "v$major.$minor.$patch$prerelease"
version_files = ["pyproject.toml", "src/chat_completion_md/__init__.py"]
bump_message = "release: $current_version → $new_version"
update_changelog_on_bump = true
annotated_tag = true
gpg_sign = true
major_version_zero = false
version_provider = "pep621"
[tool.pytest.ini_options]
testpaths = ["tests"]
[dependency-groups]
dev = ["pytest>=8.3.4"]