-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (46 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
53 lines (46 loc) · 1.08 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
[project]
name = "pose-anonymization"
description = "Remove identifying information from sign language poses"
version = "0.0.1"
authors = [
{ name = "Amit Moryossef", email = "amitmoryossef@gmail.com" },
]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"pose-format",
]
[project.optional-dependencies]
dev = [
"pytest",
"ruff",
"matplotlib",
]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"C90", # mccabe complexity
"I", # isort
"N", # pep8-naming
"UP", # pyupgrade
"B", # flake8-bugbear
"PT", # flake8-pytest-style
"W605", # invalid escape sequence
"BLE", # flake8-blind-except
]
[tool.setuptools]
packages = [
"pose_anonymization",
"pose_anonymization.data",
]
[tool.setuptools.package-data]
pose_anonymization = ["**/*.json", "**/*.poseheader"]
[tool.pytest.ini_options]
addopts = "-v"
testpaths = ["pose_anonymization", "tests"]
[project.scripts]
anonymize_pose = "pose_anonymization.bin:main"