Skip to content

Commit 5b0032b

Browse files
committed
Move dependencies out of main package
1 parent d79141e commit 5b0032b

File tree

1 file changed

+22
-24
lines changed

1 file changed

+22
-24
lines changed

pyproject.toml

+22-24
Original file line numberDiff line numberDiff line change
@@ -6,41 +6,18 @@ authors = ["Ajay Chintala"]
66
license = "ELv2"
77
readme = "README.md"
88
packages = [
9-
{include = "docker/docker-compose.yml"},
109
{include = "llmstack/config.toml"},
1110
{include = "llmstack/cli.py"},
11+
{include = "llmstack/docker-compose.yml"},
1212
]
1313

1414
[tool.poetry.scripts]
1515
llmstack = "llmstack.cli:main"
16-
llmstack-runner = "llmstack.common.runner.server:main"
1716

1817
[tool.poetry.dependencies]
1918
python = ">=3.10,<3.12"
20-
playwright = "1.42.0"
21-
sqlalchemy = "^2.0.31"
22-
websockify = "^0.12.0"
23-
geoip2 = "^4.8.0"
24-
typing-extensions = {version = "^4.5.0" }
25-
twisted = "^24.3.0"
26-
uvloop = [
27-
{version = "^0.17.0", platform = "darwin" },
28-
{version = "^0.17.0", platform = "linux" }
29-
]
30-
websockets = "^12.0"
31-
beautifulsoup4 = {version = "^4.12.2" }
32-
google-auth = {version = "^2.22.0" }
3319
toml = {version ="^0.10.2"}
34-
3520
junos-eznc = {version="^2.6.8", optional=true}
36-
chromadb = "^0.5.3"
37-
pydantic = "^2.7.4"
38-
daphne = "^4.1.2"
39-
pynacl = "^1.5.0"
40-
llama-index-vector-stores-weaviate = "^1.0.0"
41-
llama-index-core = "^0.10.51"
42-
spacy = "^3.7.5"
43-
striprtf = "^0.0.26"
4421
python-on-whales = "^0.71.0"
4522

4623
[tool.poetry.extras]
@@ -79,6 +56,17 @@ openai = {version ="^1.13.3"}
7956
grpcio-health-checking = {version ="^1.53.0"}
8057
pyjwt = "^2.8.0"
8158
psycopg2-binary = "^2.9.9"
59+
geoip2 = "^4.8.0"
60+
typing-extensions = {version = "^4.5.0" }
61+
twisted = "^24.3.0"
62+
uvloop = [
63+
{version = "^0.17.0", platform = "darwin" },
64+
{version = "^0.17.0", platform = "linux" }
65+
]
66+
google-auth = {version = "^2.22.0" }
67+
pydantic = "^2.7.4"
68+
daphne = "^4.1.2"
69+
striprtf = "^0.0.26"
8270

8371

8472
[tool.poetry.group.processors]
@@ -112,6 +100,16 @@ pypdf = "^4.2.0"
112100
pikepdf = "^9.0.0"
113101
llama-index-readers-file = "0.1.30"
114102
llama-index-vector-stores-chroma = "^0.1.10"
103+
websockets = "^12.0"
104+
chromadb = "^0.5.3"
105+
pynacl = "^1.5.0"
106+
llama-index-vector-stores-weaviate = "^1.0.0"
107+
llama-index-core = "^0.10.51"
108+
beautifulsoup4 = {version = "^4.12.2" }
109+
playwright = "1.42.0"
110+
sqlalchemy = "^2.0.31"
111+
websockify = "^0.12.0"
112+
spacy = "^3.7.5"
115113

116114

117115
[tool.poetry-dynamic-versioning]

0 commit comments

Comments
 (0)