-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
28 lines (23 loc) · 1 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
[build-system]
requires = [ "maturin>=0.14,<0.15",]
build-backend = "maturin"
[project]
name = "llm-rs"
description = "Unofficial python bindings for llm-rs. 🐍❤️🦀"
requires-python = ">=3.8"
classifiers = [ "Programming Language :: Rust", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License",]
keywords = [ "LLM", "Transformers",]
dependencies = [ "blake3", "huggingface-hub >= 0.14.1",]
[[project.authors]]
name = "Lukas Kreussel"
[project.urls]
repository = "https://github.com/LLukas22/llm-rs-python"
documentation = "https://llukas22.github.io/llm-rs-python/"
[project.optional-dependencies]
convert = [ "transformers >= 4.29.0", "sentencepiece >= 0.1.99", "torch >= 2.0.0", "accelerate >= 0.19.0", "tqdm", "einops >= 0.6.1",]
langchain = [ "langchain>=0.0.266",]
haystack=[
"farm-haystack>=1.17.1"
]
[tool.maturin]
features = [ "pyo3/extension-module",]