-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
52 lines (47 loc) · 1.34 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
[build-system]
requires = ["setuptools>=80", "setuptools-scm>=8", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "UCAgent"
description = "UnityChip Verification Agent - AI-powered hardware verification tool"
authors = [
{name = "XS-MLVP", email = "unitychip@bosc.ac.cn"},
]
license = {text = "MIT"}
readme = "README.en.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"langchain>=1.2.0",
"langchain_community>=0.3.31",
"openai>=1.109.1",
"langgraph>=1.0.5",
"langchain_openai>=1.1.6",
"langmem>=0.0.30",
"mem0ai>=0.1.118",
"langchain_mcp_adapters>=0.1.11",
"psutil>=7.1.0",
"langfuse>=3.9.1",
"gitpython>=3.1.43",
"pytoffee@git+https://gitlink.org.cn/XS-MLVP/toffee@master",
"toffee-test@git+https://gitlink.org.cn/XS-MLVP/toffee-test@master",
"textual>=7.3.0",
"fastapi>=0.135.0",
"uvicorn[standard]>=0.42.0",
]
dynamic = ["version"]
[project.scripts]
ucagent = "ucagent.cli:main"
[project.urls]
Homepage = "https://github.com/XS-MLVP/UCAgent"
[tool.setuptools_scm]
fallback_version = "0.9.1"
version_file = "ucagent/_version.py"
version_scheme = "guess-next-dev"
local_scheme = "node-and-date"
[tool.setuptools]
packages = ["ucagent"]