-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
43 lines (36 loc) · 1002 Bytes
/
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
[project]
name = "signwriting-illustration"
description = "Illustrate signs using SignWriting."
version = "0.0.1"
authors = [
{ name = "Amit Moryossef", email = "[email protected]" },
]
readme = "README.md"
dependencies = [
"signwriting @ git+https://github.com/sign-language-processing/signwriting"
"signwriting_evaluation @ git+https://github.com/sign-language-processing/signwriting-evaluation"
]
[project.optional-dependencies]
dev = [
"pylint"
]
[tool.yapf]
based_on_style = "google"
column_limit = 120
[tool.pylint]
max-line-length = 120
disable = [
"C0114", # Missing module docstring
"C0115", # Missing class docstring
"C0116", # Missing function or method docstring
]
ignore-paths = '^signwriting_illustration/controlnet/ControlNet/.*$'
[tool.pylint.typecheck]
generated-members = ["cv2.*", "PIL.Image.*"]
[tool.setuptools]
packages = [
"signwriting_illustration"
]
[tool.pytest.ini_options]
addopts = "-v"
testpaths = ["signwriting_illustration"]