-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 950 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 950 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "atomic_concept_edits"
version = "0.1.0"
description = "A framework for systematic prompt exploration and optimization through atomic concept-level edits."
readme = "README.md"
authors = [{name = "Neha Kalibhat", email = "nehamk@google.com"}]
license = "Apache-2.0"
requires-python = ">=3.10"
dependencies = [
"absl-py",
"google-genai",
"ml_collections",
"nltk",
"numpy",
"pandas",
"sympy",
"tenacity",
]
[project.optional-dependencies]
openai = ["openai"]
anthropic = ["anthropic"]
hf = ["datasets"]
tfds = ["tensorflow-datasets"]
all = ["openai", "anthropic", "datasets", "tensorflow-datasets"]
[tool.setuptools]
packages = ["atomic_concept_edits", "atomic_concept_edits.configs", "atomic_concept_edits.data", "atomic_concept_edits.models", "atomic_concept_edits.util"]
package-dir = {"atomic_concept_edits" = "."}