-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathpyproject.toml
263 lines (246 loc) · 6.83 KB
/
pyproject.toml
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
[build-system]
requires = ["setuptools>=40.8.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
# Do not add spaces around the '=' sign for any of the fields
# preceded by a marker comment as it affects the publish workflow.
#replace_package_name_marker
name="dspy"
#replace_package_version_marker
version="2.6.16"
description = "DSPy"
readme = "README.md"
authors = [{ name = "Omar Khattab", email = "[email protected]" }]
license = { text = "MIT License" }
requires-python = ">=3.9, <3.13"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3"
]
# NOTE: The dependencies below are duplicated in [tool.poetry.dependencies]
# for Poetry compatibility. Be sure to update both when necessary.
dependencies = [
"backoff>=2.2",
"joblib~=1.3",
"openai>=0.28.1,<=1.61.0",
"pandas>=2.1.1",
"regex>=2023.10.3",
"ujson>=5.8.0",
"tqdm>=4.66.1",
"datasets>=2.14.6",
"requests>=2.31.0",
"optuna>=3.4.0",
"pydantic>=2.0",
"magicattr>=0.1.6",
"litellm>=1.60.3",
"diskcache>=5.6.0",
"json-repair>=0.30.0",
"tenacity>=8.2.3",
"anyio",
"asyncer==0.0.8",
"cachetools>=5.5.0",
"cloudpickle>=3.0.0",
"rich>=13.7.1",
"numpy>=1.26.0,<2.2; python_version == '3.9'",
"numpy>=1.26.0; python_version >= '3.10'",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["dspy", "dspy.*"]
exclude = ["tests", "tests.*"]
[tool.setuptools.package-data]
dspy = ["primitives/*.js"]
[project.optional-dependencies]
anthropic = ["anthropic>=0.18.0,<1.0.0"]
chromadb = ["chromadb~=0.4.14"]
lancedb = ["lancedb>=0.19.0"]
qdrant = ["qdrant-client>=1.11.1", "fastembed>=0.2.0"]
marqo = ["marqo"]
epsilla = ["pyepsilla~=0.3.7"]
pinecone = ["pinecone-client~=2.2.4"]
weaviate = ["weaviate-client~=4.5.4"]
milvus = ["pymilvus~=2.3.7"]
aws = ["boto3~=1.34.78"]
docs = [
"sphinx>=4.3.0",
"furo>=2023.3.27",
"docutils<0.17",
"m2r2",
"myst-parser",
"myst-nb",
"sphinx-autobuild",
"sphinx_rtd_theme",
"autodoc_pydantic",
"sphinx-reredirects>=0.1.2",
"sphinx-automodapi==0.16.0",
]
dev = ["pytest>=6.2.5"]
fastembed = ["fastembed>=0.2.0"]
[project.urls]
homepage = "https://github.com/stanfordnlp/dspy"
[tool.poetry]
name = "dspy"
version = "2.6.13"
description = "DSPy"
authors = ["Omar Khattab <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/stanfordnlp/dspy"
repository = "https://github.com/stanfordnlp/dspy"
keywords = ["dspy", "ai", "language models", "llm", "openai"]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
pydantic = "^2.0"
backoff = "^2.2"
joblib = "^1.3"
openai = ">=0.28.1,<=1.61.0"
pandas = "^2.1.1"
regex = "^2023.10.3"
ujson = "^5.8.0"
tqdm = "^4.66.1"
datasets = "^2.14.6"
requests = "^2.31.0"
optuna = "^3.4.0"
magicattr = "^0.1.6"
litellm = [
{ version = ">=1.60.3", markers = "sys_platform == 'win32'" },
{ version = ">=1.60.3", extras = ["proxy"], markers = "sys_platform != 'win32'" }
]
diskcache = "^5.6.0"
json-repair = "^0.30.0"
tenacity = ">=8.2.3"
asyncer = "0.0.8"
cachetools = "^5.5.0"
cloudpickle = "^3.0.0"
rich = "^13.7.1"
numpy = [
{ version = ">=1.26.0,<2.2", markers = "python_version == '3.9'" },
{ version = ">=1.26.0", markers = "python_version >= '3.10'" }
]
# Optional dependencies (now declared inline)
anthropic = { version = ">=0.18.0,<1.0.0", optional = true }
chromadb = { version = "^0.4.14", optional = true }
lancedb = { version = "^0.19.0", optional = true }
marqo = { version = "*", optional = true }
pyepsilla = { version = "^0.3.7", optional = true }
qdrant-client = { version = "^1.6.2", optional = true }
pinecone-client = { version = "^2.2.4", optional = true }
weaviate-client = { version = "^4.5.4", optional = true }
pymilvus = { version = "^2.3.6", optional = true }
boto3 = { version = "^1.34.78", optional = true }
sphinx = { version = ">=4.3.0", optional = true }
furo = { version = ">=2023.3.27", optional = true }
docutils = { version = "<0.17", optional = true }
m2r2 = { version = "*", optional = true }
myst-parser = { version = "*", optional = true }
myst-nb = { version = "*", optional = true }
sphinx-autobuild = { version = "*", optional = true }
sphinx_rtd_theme = { version = "*", optional = true }
autodoc_pydantic = { version = "*", optional = true }
sphinx-reredirects = { version = "^0.1.2", optional = true }
sphinx-automodapi = { version = "0.16.0", optional = true }
psycopg2 = { version = "^2.9.9", optional = true }
pgvector = { version = "^0.2.5", optional = true }
llama-index = { version = "^0.10.30", optional = true }
[tool.poetry.extras]
chromadb = ["chromadb"]
lancedb = ["lancedb"]
qdrant = ["qdrant-client", "fastembed"]
marqo = ["marqo"]
epsilla = ["pyepsilla"]
pinecone = ["pinecone-client"]
weaviate = ["weaviate-client"]
milvus = ["pymilvus"]
aws = ["boto3"]
docs = [
"sphinx",
"furo",
"docutils",
"m2r2",
"myst-parser",
"myst-nb",
"sphinx-autobuild",
"sphinx_rtd_theme",
"autodoc_pydantic",
"sphinx-reredirects",
"sphinx-automodapi",
]
fastembed = ["fastembed"]
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
transformers = "^4.38.2"
torch = "^2.2.1"
pytest-mock = "^3.12.0"
ruff = "^0.3.0"
black = "^24.2.0"
pre-commit = "^3.7.0"
ipykernel = "^6.29.4"
semver = "^3.0.2"
pillow = "^10.1.0"
litellm = [
{ version = ">=1.60.3,<=1.63.2", markers = "sys_platform == 'win32'" },
{ version = ">=1.60.3,<=1.63.2", extras = ["proxy"], markers = "sys_platform != 'win32'" }
]
datamodel-code-generator = "^0.26.3"
[tool.poetry.group.doc.dependencies]
mkdocs = ">=1.5.3"
mkdocs-material = ">=9.0.6"
mkdocs-material-extensions = ">=1.3.1"
mkdocs-gen-files = "^0.5.0"
mkdocstrings-python = "^1.7.5"
mkdocstrings = { extras = ["python"], version = ">=0.20.0" }
mike = ">=2.0.0"
[tool.coverage.run]
branch = true
omit = [
"*/__init__.py",
"*/test_*.py",
"*/tests/*.py",
"*/conftest.py",
"*/venv/*",
"*/virtualenv/*",
"*/.venv/*",
"*/.virtualenv/*",
"*/env/*",
"*/.env/*",
"*/setup.py",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"if self.debug:",
"raise AssertionError",
"raise NotImplementedError",
"if __name__ == '__main__':",
"logger",
"try",
"except",
"^\\s*self\\.\\w+(:\\s*[^=]+)?\\s*=.*$",
"continue",
]
[tool.ruff]
line-length = 120
indent-width = 4
target-version = "py39"
[tool.ruff.lint]
select = [
"F", # Pyflakes
"E", # Pycodestyle
"TID252", # Absolute imports
]
ignore = [
"E501", # Line too long
]
fixable = ["ALL"]
unfixable = []
[tool.ruff.format]
docstring-code-format = false
indent-style = "space"
line-ending = "auto"
[tool.ruff.lint.per-file-ignores]
"**/{tests,testing,docs}/*" = ["ALL"]
"**__init__.py" = ["ALL"]