forked from MadcowD/ell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
66 lines (60 loc) · 1.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
[tool.poetry]
name = "ell-ai"
version = "0.0.14"
description = "ell - the language model programming library"
authors = ["William Guss <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/MadcowD/ell"
packages = [
{ include = "ell", from = "src" }
]
homepage = "https://docs.ell.so"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
]
include = [
{ path = "src/ell/studio/static", format = ["sdist", "wheel"] },
{ path = "src/ell/studio/static/**/*", format = ["sdist", "wheel"] },
{ path = "src/ell/util/char_bitmaps.npy", format = ["sdist", "wheel"] }
]
[tool.poetry.dependencies]
python = ">=3.9"
fastapi = "^0.111.1"
numpy = ">=1.26.0"
dill = "^0.3.8"
colorama = "^0.4.6"
cattrs = "^23.2.3"
openai = "^1.51.0"
anthropic = { version = "^0.34.2", optional = true }
groq = { version = "^0.11.0", optional = true }
sqlmodel = "^0.0.21"
uvicorn = "^0.30.3"
requests = "^2.32.3"
typing-extensions = "^4.12.2"
black = "^24.8.0"
pillow = "^10.4.0"
psutil = "^5.9.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
sphinx = "<8.0.0"
sphinx-rtd-theme = "^2.0.0"
[tool.poetry.extras]
# N.B. The `openai` dep is always required, but explicitly providing it via an e.g. "openai" extra
# causes poetry to mark it as optional = true (even if explicitly specified optional = false).
anthropic = ["anthropic"]
groq = ["groq"]
all = ["anthropic", "groq"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
ell-studio = "ell.studio.__main__:main"
# [tool.poetry.build]
# # script = "build.py"