-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
73 lines (61 loc) · 1.59 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = 'sibila'
description='Structured queries from local or online LLM models'
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [
{ name = "Jorge Diogo", email = "[email protected]" },
]
keywords = [
"llama.cpp",
"AI",
"Transformers",
"GPT",
"LLM"
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"llama-cpp-python >= 0.2",
"openai >= 1.1",
"tiktoken",
"anthropic",
"mistralai",
"jinja2 >= 3.0",
"jsonschema",
"pydantic >= 2.0",
"typing_extensions",
"tqdm",
"pytest-asyncio >= 0.17",
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "sibila.__version__"}
[tool.setuptools]
packages = ["sibila", "sibila.res"]
[tool.setuptools.package-data]
"sibila.res" = ["*.json"]
[project.scripts]
sibila = "sibila.cli:main"
[project.urls]
Homepage = "https://github.com/jndiogo/sibila"
Documentation = "https://jndiogo.github.io/sibila"
Issues = "https://github.com/jndiogo/sibila/issues"
[tool.pytest.ini_options]
minversion = "6.0"
asyncio_mode = "auto"
# addopts = "-ra -q"
# testpaths = ["tests"]