47 lines
1017 B
TOML
47 lines
1017 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "ramble"
|
|
version = "0.1.0"
|
|
description = "AI-powered structured field extraction from unstructured text"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
license = {text = "MIT"}
|
|
authors = [
|
|
{name = "Rob"}
|
|
]
|
|
keywords = ["ai", "llm", "structured-data", "gui", "pyside6"]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
]
|
|
|
|
dependencies = [
|
|
"PySide6>=6.4.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest",
|
|
"pytest-cov",
|
|
]
|
|
images = [
|
|
"requests",
|
|
]
|
|
|
|
[project.scripts]
|
|
ramble = "ramble.cli:main"
|
|
|
|
[project.urls]
|
|
Repository = "https://gitea.brrd.tech/rob/ramble"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|