forked from kerekovskik/autologic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (33 loc) · 1.04 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "autologic"
version = "0.0.3"
description = "A framework for LLMs to self-compose reasoning structures"
authors = [{name = "Konstantin Kerekovski", email = "[email protected]"}]
license = {text = "Apache-2.0"}
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
keywords = ["LLMs", "framework", "reasoning structures"]
dependencies = [
"python-dotenv",
"google-generativeai",
"llama-cpp-python",
"openai"
]
[project.urls]
Repository = "https://github.com/waszumteufel/autologic"
[project.scripts]
autologic = "autologic.cli:main"
[tool.setuptools]
packages = {find = {where = ["src"]}}