-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 792 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (35 loc) · 792 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
27
28
29
30
31
32
33
34
35
36
37
38
39
[project]
name = "dce"
version = "0.1.0"
description = "Dynamic Context Evolution for Scalable Synthetic Data Generation"
requires-python = ">=3.11"
dependencies = [
"openai>=1.0",
"anthropic>=0.40",
"pydantic>=2.0",
"chromadb>=0.4",
"numpy>=1.24",
"scikit-learn>=1.3",
"hdbscan>=0.8",
"matplotlib>=3.7",
"seaborn>=0.12",
"pyyaml>=6.0",
"tenacity>=8.0",
"python-dotenv>=1.0",
"tqdm>=4.65",
"jsonlines>=4.0",
]
[project.optional-dependencies]
downstream = [
"transformers>=4.30",
"datasets>=2.14",
"torch>=2.0",
"evaluate>=0.4",
]
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["src*"]
[tool.pytest.ini_options]
testpaths = ["tests"]