-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
24 lines (21 loc) · 743 Bytes
/
pyproject.toml
File metadata and controls
24 lines (21 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "open-taranis"
version = "0.3.0"
description = "Python framework for LLM/VLM with logic-only coding with streaming, tool calls, and multi-LLM provider support"
authors = [{name = "SyntaxError4Life", email = "contact@zanomega.com"}]
dependencies = ["requests", "packaging", "bs4"]
readme = "README.md"
requires-python = ">=3.8"
license = {text = "GPL-3.0-or-later"}
keywords = ["API", "LLM"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"
]
[project.scripts]
taranis = "open_taranis.CLI:main"
[tool.hatch.build.targets.wheel]
packages = ["src/open_taranis"]