-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (51 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
59 lines (51 loc) · 1.18 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "steerability"
version = "0.1.0"
description = "Steerability evaluation for large language models."
authors = [{ name = "Trenton Chang", email = "ctrenton@umich.edu" }]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"aiohttp==3.11.18",
"beartype",
"click",
"flask",
"gunicorn",
"huggingface_hub[cli]",
"nltk==3.9.1",
"numpy<2.0",
"openai==1.77.0",
"pandas==2.2.3",
"requests==2.32.3",
"ruamel.yaml",
"rich",
"scipy",
"taaled==0.32",
"textstat==0.7.5",
"torch==2.6.0",
"transformers==4.51.3",
"uvicorn==0.34.2",
"vllm==0.8.5",
# GitHub dependency
"sammo @ git+https://github.com/tchang1997/sammo.git@main",
"pylats @ git+https://github.com/tchang1997/pylats.git@main"
]
[project.optional-dependencies]
web = [
"flask",
"pandas",
"gunicorn",
"boto3",
"numpy<2.0",
"scipy"
]
[project.scripts]
steerflow = "steerflow.__main__:cli"
[tool.setuptools]
packages = ["steerability", "steerflow"]
[tool.setuptools.package-dir]
"" = "src"