-
-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 651 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 651 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
34
35
36
37
38
[tool.poetry]
name = "llmaz"
version = "0.0.1"
description = "☸️ Easy, advanced inference platform for large language models on Kubernetes"
authors = ["InftyAI Community"]
license = "Apache-2.0"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
huggingface-hub = "^0.23.5"
modelscope = "^1.17.0"
omnistore = "^0.0.4"
[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
pytest = "^8.3.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''