-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathsetup.cfg
More file actions
36 lines (33 loc) · 853 Bytes
/
setup.cfg
File metadata and controls
36 lines (33 loc) · 853 Bytes
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
[metadata]
name = dynasor
version = 0.0.1
description = Dynasor is a Python library for speedup LLM reasoning
long_description = file: README.md
long_description_content_type = text/markdown
author = Dynasor Team
license = MIT
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
packages = find:
python_requires = >=3.8
install_requires =
openai
rich
prompt_toolkit
pydantic
datasets
tqdm
latex2sympy2
word2number
[options.packages.find]
where = .
[options.entry_points]
console_scripts =
dynasor-vllm = dynasor.cli.vllm_server:main
dynasor = dynasor.cli.vllm_server:main
dynasor-openai = dynasor.cli.openai_server:main
dynasor-chat = dynasor.cli.chat:main
dynasor-sglang = dynasor.cli.sglang_server:main