forked from eth-sri/lmql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
40 lines (37 loc) · 830 Bytes
/
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
[metadata]
name = lmql
version = 0.0.6.1
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://docs.lmql.ai
classifiers =
Programming Language :: Python :: 3
Operating System :: OS Independent
[options]
packages = find:
package_dir =
= src
include_package_data = True
python_requires = >=3.10
install_requires =
astunparse ==1.6.3
openai
termcolor
pydot
transformers ==4.25.1
pandas
accelerate
[options.packages.find]
where = src
exclude =
**/node_modules/*
**/web/**/*
**/vscode/**/*
[options.entry_points]
console_scripts =
lmql = lmql.cli:main