-
Notifications
You must be signed in to change notification settings - Fork 200
/
setup.cfg
58 lines (53 loc) · 1.22 KB
/
setup.cfg
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
[metadata]
name = lmql
version = 0.999999
author = Luca Beurer-Kellner, Marc Fischer, Martin Vechev
author_email = [email protected]
description = A query language for language models.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://lmql.ai
project_urls =
Docs = https://lmql.ai/docs
classifiers =
Programming Language :: Python :: 3
Operating System :: OS Independent
[options]
packages = find:
package_dir =
= src
include_package_data = True
python_requires = >=3.10
# When updating this list, regenerate poetry.lock by running ''poetry lock --no-update'' in scripts/flake.d
install_requires =
aiohttp <4.0.0
astunparse ==1.6.3
openai
termcolor
numpy
tiktoken
[options.extras_require]
# When updating version requirements for optional dependencies, also update flake.d/pyproject.toml
hf =
transformers >=4.32.0
hf-accel =
accelerate
hf-gptq =
optimum
auto-gptq
llama =
llama-cpp-python
replicate =
aiohttp-sse-client
transformers >=4.32.0
tests =
pytest
pytest-asyncio
[options.packages.find]
where = src
exclude =
**/node_modules/*
**/vscode/**/*
[options.entry_points]
console_scripts =
lmql = lmql.cli:main