-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
62 lines (54 loc) · 1.53 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
58
59
60
61
62
[tool]
[tool.poetry]
name = "eyetrackvr_backend"
version = "1.6.1"
description = "Opensource, affordable VR eye tracker for VRChat"
authors = ["ShyAssassin <[email protected]>", "RedHawk989 <[email protected]>"]
license = "MIT"
repository = "https://github.com/RedHawk989/EyeTrackVR"
packages = [
{ include = "eyetrackvr_backend" }
]
[tool.poetry.scripts]
eyetrackvr-backend = 'eyetrackvr_backend.__main__:main'
[tool.poetry.dependencies]
python = "~3.11.0"
python-osc = "^1.8.1"
opencv-python = "^4.8.0.74"
numpy = "^1.23.5"
pydantic = "^2.0.3"
fastapi = "^0.110.0"
uvicorn = "^0.20.0"
coloredlogs = "^15.0.1"
colorama = "^0.4.6"
watchdog = "^3.0.0"
onnxruntime = "^1.16.0"
pyserial = "^3.5"
psutil = "^5.9.7"
pye3d = "^0.3.1.post1"
[tool.poetry.group.dev.dependencies]
pytest-asyncio = "^0.21.1"
pyinstaller = "^5.6.2"
viztracer = "^0.15.6"
black = "^24.3.0"
pytest = "^7.2.0"
mypy = "^1.4.1"
ruff = "^0.6.1"
[tool.black]
line-length = 135
exclude = "(.git|.env|venv|.venv|build|dist|.vscode|.idea|__pycache__|.ruff_cache)"
target-version = ["py310", "py311"]
[tool.ruff]
lint.select = ["E", "F", "W", "Q"]
src = ["eyetrackvr-backend", "test"]
respect-gitignore = true
target-version = "py311"
output-format = "grouped"
indent-width = 4
exclude = ["__pycache__", ".ruff_cache", ".vscode", ".idea", ".venv", "build", "dist", ".git", ".env", "venv"]
line-length = 135
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"