-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
41 lines (39 loc) · 1.28 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
[tool.poetry]
name = "mosaic-subnet"
version = "0.1.0"
description = ""
authors = []
readme = "README.md"
packages = [{ include = "mosaic_subnet" }]
[tool.poetry.dependencies]
python = "^3.10"
diffusers = "^0.27.2"
pydantic = "^2.6.4"
pydantic-settings = "^2.2.1"
typer = "^0.9.0"
rich = "^13.7.0"
fastapi = "^0.110.0"
uvicorn = "^0.29.0"
keylimiter = "^0.1.5"
communex = "^0.1.33"
transformers = "^4.40.1"
numpy = "^1.24.1"
torch = [
{ version = "2.3.0", source = "pypi", markers = "sys_platform == 'darwin' and platform_machine == 'arm64'" },
{ version = "2.2.2", source = "pypi", markers = "sys_platform == 'darwin' and platform_machine == 'x86_64'" },
{ url = "https://download.pytorch.org/whl/cu121/torch-2.2.2%2Bcu121-cp310-cp310-linux_x86_64.whl", python = ">=3.10,<3.11", markers = "sys_platform == 'linux'" },
{ url = "https://download.pytorch.org/whl/cu121/torch-2.2.2%2Bcu121-cp311-cp311-linux_x86_64.whl", python = ">=3.11,<3.12", markers = "sys_platform == 'linux'" },
]
accelerate = "^0.29.3"
httpx = "^0.27.0"
datasets = "^2.19.0"
loguru = "^0.7.2"
supervisor = "^4.2.5"
pylint = "^3.1.0"
attrs = "^23.2.0"
hpsv2x = "^1.2.0"
[tool.poetry.group.dev.dependencies]
jupyterlab = "^4.2.0"
[build-system]
requires = ["poetry-core>=1.8.2"]
build-backend = "poetry.core.masonry.api"