forked from huggingface/ml-intern
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (53 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
61 lines (53 loc) · 1.17 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
59
60
61
[project]
name = "hf-agent"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
# Core dependencies
"datasets>=4.4.1",
"pydantic>=2.12.3",
"python-dotenv>=1.2.1",
# Agent runtime dependencies
"requests>=2.33.0",
"litellm>=1.83.0",
"huggingface-hub>=1.0.1",
"fastmcp>=3.2.0",
"prompt-toolkit>=3.0.0",
"thefuzz>=0.22.1",
"rich>=13.0.0",
"nbconvert>=7.16.6",
"nbformat>=5.10.4",
"whoosh>=2.7.4",
# Web backend dependencies
"fastapi>=0.115.0",
"uvicorn[standard]>=0.32.0",
"httpx>=0.27.0",
"websockets>=13.0",
]
[project.optional-dependencies]
# Evaluation/benchmarking dependencies
eval = [
"inspect-ai>=0.3.149",
"pandas>=2.3.3",
"datasets>=4.3.0",
"tenacity>=8.0.0",
]
# Development and testing dependencies
dev = [
"pytest>=9.0.2",
]
# All dependencies (eval + dev)
all = [
"hf-agent[eval,dev]",
]
[project.scripts]
ml-intern = "agent.main:cli"
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["agent*"]
[tool.uv]
package = true