This commit is contained in:
2025-09-16 05:46:05 +02:00
parent 8be265e6cd
commit 1c4a570fac
10 changed files with 633 additions and 0 deletions

29
pyproject.toml Normal file
View File

@@ -0,0 +1,29 @@
[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 = []
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"]