forked from stanfordnlp/dspy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
119 lines (112 loc) · 3.14 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
[build-system]
requires = ["setuptools>=40.8.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dspy-ai"
version = "2.1.1"
description = "DSPy"
readme = "README.md"
authors = [{name = "Omar Khattab", email = "[email protected]"}]
license = {text = "MIT License"}
requires-python = ">=3.9, <3.12"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3", # removed 3.8
"Programming Language :: Python :: 3.9",
]
dependencies = [
"backoff~=2.2.1",
"joblib~=1.3.2",
"openai~=0.28.1",
"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",
]
[project.optional-dependencies]
pinecone = ["pinecone-client~=2.2.4"]
qdrant = ["qdrant-client~=1.6.2", "fastembed~=0.1.0"]
chromadb = ["chromadb~=0.4.14"]
marqo = ["marqo"]
docs = [
"sphinx>=4.3.0",
"furo>=2023.3.27",
"docutils<0.17",
"m2r2",
"myst-parser",
"myst-nb",
"sphinx-autobuild",
"sphinx_rtd_theme",
"pydantic<2.0.0",
"autodoc_pydantic",
"sphinx-reredirects>=0.1.2",
"sphinx-automodapi==0.16.0"
]
[project.urls]
homepage = "https://github.com/stanfordnlp/dspy"
[tool.poetry]
name = "dspy"
version = "2.0.8"
description = "DSPy"
authors = ["Omar Khattab <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/stanfordnlp/dspy"
repository = "https://github.com/stanfordnlp/dspy"
# documentation = "https://dspy-ai.readthedocs.io"
keywords = ["dspy", "ai", "language models", "llm", "openai"]
# may be a bit much
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
backoff = "^2.2.1"
joblib = "^1.3.2"
openai = "^0.28.1"
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"
pinecone-client = {version = "^2.2.4", optional = true}
qdrant-client = {version = "^1.6.2", optional = true}
fastembed = {version = "^0.1.0", optional = true}
chromadb = {version = "^0.4.14", optional = true}
marqo = {version = "*", 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}
pydantic = {version = "*", optional = true}
autodoc_pydantic = {version = "*", optional = true}
sphinx-reredirects = {version = "^0.1.2", optional = true}
sphinx-automodapi = {version = "0.16.0", optional = true}
[tool.poetry.extras]
pinecone = ["pinecone-client"]
qdrant = ["qdrant-client", "fastembed"]
chromadb = ["chromadb"]
marqo = ["marqo"]
docs = [
"sphinx",
"furo",
"docutils",
"m2r2",
"myst-parser",
"myst-nb",
"sphinx-autobuild",
"sphinx_rtd_theme",
"pydantic",
"autodoc_pydantic",
"sphinx-reredirects",
"sphinx-automodapi"
]