30 lines
782 B
TOML
30 lines
782 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 = []
|
|
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"]
|