-
Notifications
You must be signed in to change notification settings - Fork 359
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 1.25 KB
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
[project]
name = "byllm"
version = "0.6.1"
description = "byLLM Provides Easy to use APIs for different LLM Providers to be used with Jaseci's Jaclang Programming Language."
authors = [{name = "Jason Mars", email = "jason@mars.ninja"}]
maintainers = [{name = "Jason Mars", email = "jason@mars.ninja"}]
license = "MIT"
readme = "README.md"
keywords = ["llm", "jaclang", "jaseci", "byLLM"]
requires-python = ">=3.11"
dependencies = [
"jaclang>=0.13.2",
"litellm>=1.70.0,<=1.82.6", # SECURITY: v1.82.7+ was compromised and yanked from PyPI
"loguru>=0.7.2,<0.8.0",
"pillow>=12.0.0,<13.0.0",
]
[project.urls]
Repository = "https://github.com/Jaseci-Labs/jaseci"
Homepage = "https://jaseci.org"
Documentation = "https://jac-lang.org"
[project.entry-points."jac"]
byllm = "byllm.plugin:JacRuntime"
byllm_plugin_config = "byllm.plugin_config:JacByllmPluginConfig"
[project.optional-dependencies]
dev = [
"pytest>=8.3.2",
]
tools = ["wikipedia"]
video = ["opencv-python-headless"]
[tool.setuptools.packages.find]
include = ["byllm*"]
[tool.setuptools.package-data]
"*" = ["*.jac", "*.impl/*.jac", "*.cl/*.jac"]
byllm = ["_precompiled/**/*.jir", "_precompiled/manifest.json"]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"