-
Notifications
You must be signed in to change notification settings - Fork 173
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 773 Bytes
/
pyproject.toml
File metadata and controls
34 lines (29 loc) · 773 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "linux-fake-background-webcam"
version = "0.1.0"
description = "Faking your webcam background under GNU/Linux."
authors = ["Fufu Fang <fangfufu2003@gmail.com>"]
packages = [
{ include = "lfbw" }
]
[tool.poetry.scripts]
lfbw = 'lfbw.lfbw:main'
[tool.poetry.dependencies]
python = ">=3.11"
numpy = ">=1.26.4"
opencv-python = ">=4.11.0.86"
pyvirtualcam = ">=0.11.0"
mediapipe = ">=0.10.21"
inotify_simple = ">=1.3.5"
cmapy = ">=0.6.6"
configargparse = ">=1.7.1"
protobuf = ">=4.25.8"
[tool.codespell]
# Ref: https://github.com/codespell-project/codespell#using-a-config-file
skip = '.git*'
check-hidden = true
# ignore-regex = ''
# ignore-words-list = ''