-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
26 lines (23 loc) · 761 Bytes
/
Copy pathpyproject.toml
File metadata and controls
26 lines (23 loc) · 761 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "clarifycodebench"
version = "0.1.0"
description = "Evaluating LLMs on clarifying ambiguous requirements for code generation."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
keywords = ["llm", "code-generation", "benchmark", "requirements", "clarification"]
dependencies = [
"openai>=1.0.0",
"httpx>=0.24.0",
"numpy>=1.20.0",
"scikit-learn>=1.0.0",
]
[project.urls]
Homepage = "https://github.com/fangz-cs/ClarifyCodeBench"
Repository = "https://github.com/fangz-cs/ClarifyCodeBench"
Issues = "https://github.com/fangz-cs/ClarifyCodeBench/issues"
[tool.setuptools.packages.find]
include = ["clarifycodebench*"]