-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (74 loc) · 1.93 KB
/
pyproject.toml
File metadata and controls
82 lines (74 loc) · 1.93 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "data-juicer-agents"
version = "0.1.0"
description = "A multi-agent data processing system built on AgentScope and Data-Juicer"
readme = "README.md"
license = { text = "Apache-2.0" }
authors = [{ name = "DataJuicer Team" }]
requires-python = ">=3.10, <3.13"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
dependencies = [
"agentscope==1.0.14",
"agentscope-runtime==1.0.5",
"jinja2>=3.1.6",
"langchain-community",
"psutil>=7.1.3",
"py-data-juicer>=1.4.0",
"streamlit>=1.51.0",
"huggingface-hub<1.0",
"faiss-cpu>=1.13.1",
"hf-transfer>=0.1.9",
"transformers>=4.57.3",
"oyaml",
]
[project.scripts]
dj-agents = "data_juicer_agents.cli:main"
[project.optional-dependencies]
dev = ["pytest>=6.0", "black", "flake8", "mypy"]
qa = ["qdrant-client>=1.11.0,<1.12.0"]
[project.urls]
Homepage = "https://github.com/datajuicer/data-juicer-agents"
Repository = "https://github.com/datajuicer/data-juicer-agents"
Documentation = "https://github.com/datajuicer/data-juicer-agents#readme"
[tool.setuptools]
packages = [
"data_juicer_agents",
"data_juicer_agents.core",
"data_juicer_agents.tools",
"data_juicer_agents.tools.op_manager",
"qa-copilot",
"qa-copilot.op_manager",
]
[tool.black]
line-length = 88
target-version = ['py310']
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]