forked from matemax/lunasdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
55 lines (48 loc) · 1.25 KB
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
[build-system]
requires = ["poetry"]
build-backend = "poetry.masonry.api"
[tool]
[tool.isort]
profile = "black"
combine_as_imports = true
multi_line_output = 3
line_length = 120
[tool.poetry]
name = "lunavl"
version = "2.13.7"
description = "Python interface for VisionLabs Luna platform"
authors = ["VisionLabs <m.limonov@visionlabs.ru>"]
repository = "https://github.com/VisionLabs/lunasdk"
[[tool.poetry.source]]
name = "vlabspypi"
url = "http://pypi.vlabs/root/public/+simple"
priority = "supplemental"
[tool.poetry.dependencies]
python = ">=3.11"
numpy = ">=2.3.0"
requests = "*"
Pillow = {version = "*", markers = "sys_platform == 'win32' or sys_platform == 'darwin'"}
pillow-simd = {version = "*", markers = "sys_platform != 'win32' and sys_platform != 'darwin'"}
FaceEngine = ">=5.30.3.0"
[tool.poetry.group.linters.dependencies]
autoflake = "*"
black = "*"
isort = "*"
flake8 = "^3.7.9"
mypy = "*"
[tool.poetry.group.dev.dependencies]
types-requests = "^2.28.11.15"
sphinx = ">=2.0.0"
pytest = ">=4.4"
pytest-subtests = "*"
sphinx-autodoc-typehints = "*"
pre-commit = "^2.19"
snakecase = "*"
jsonschema = "^3.2.0"
torch = ">=2.7.1"
onnxruntime-gpu = ">=1.22.0"
tensorflow-cpu = "*"
types-tensorflow = "*"
[tool.black]
line-length = 120
target-version = ['py310']