-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (48 loc) · 1.24 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "flare"
version = "0.1.0"
description = ""
authors = ["seruva19 <seruva19@yandex.ru>"]
readme = "README.md"
[[tool.poetry.source]]
name = "pytorch"
url = "https://download.pytorch.org/whl/cu118"
priority = "explicit"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[tool.poetry.dependencies]
python = ">=3.10,<3.11.*"
toml = "0.10.2"
fastapi = "0.108.0"
openai = "1.14.2"
uvicorn = "0.25.0"
omegaconf = "2.3.0"
[[tool.poetry.dependencies.torch]]
version = "2.2.0+cu118"
source = "pytorch"
markers = "sys_platform == 'windows'"
[[tool.poetry.dependencies.torch]]
version = "2.2.0+cu118"
source = "pytorch"
markers = "sys_platform == 'linux'"
[[tool.poetry.dependencies.torch]]
version = "2.2.0"
source = "PyPI"
markers = "sys_platform == 'darwin'"
[tool.poetry.scripts]
flare = "flare:start"
get-default-plugins = "scripts.plugins:download"
update-default-plugins = "scripts.plugins:update"
merge = "scripts.config:merge"
reset = "scripts.config:reset"
test = "scripts.test:run"
train = "scripts.train:start"
[tool.poetry.dependencies.torchvision]
version = "0.17.0+cu118"
source = "pytorch"
[tool.poetry.group.dev.dependencies]
black = "^24.2.0"