Files
LLMUtils/pyproject.toml
2025-09-16 16:05:01 +02:00

30 lines
797 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "llmutils"
version = "0.1.0"
description = "Utilities for working with LLMs"
readme = "README.md"
requires-python = ">=3.13"
dependencies = ["jinja2>=3.0.0"]
authors = [
{name = "Alexander Thiess", email = "thiess.alexander@googlemail.com"}
]
license = {text = "MIT"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
]
[project.urls]
Homepage = "https://git.project-insanity.de/gmarth/LLMUtils"
Repository = "https://git.project-insanity.de/gmarth/LLMUtils"
[tool.hatch.build.targets.wheel]
packages = ["src/llmutils"]