forked from invoke-ai/PyPatchMatch
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
71 lines (60 loc) · 1.63 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
63
64
65
66
67
68
69
70
71
[build-system]
build-backend="setuptools.build_meta"
requires=["setuptools == 67.1.0", "wheel"]
[project]
authors=[
{name="The InvokeAI Project", email="lincoln.stein@gmail.com"},
{name="Kyle Schouviller", email="kyle0654@hotmail.com"},
{name="Matthias Wild", email="mauwii@outlook.de"},
{name="Younesse ANDAM", email="younesse.andam@gmail.com"},
]
dependencies=["numpy", "pillow", "tqdm"]
description='This library implements the PatchMatch based inpainting algorithm.'
dynamic=["version"]
license={file="LICENSE"}
name='PyPatchMatch'
readme={content-type="text/markdown", file="README.md"}
requires-python=">=3.9,<3.11"
[project.urls]
'Source Code'='https://github.com/mauwii/PyPatchMatch'
[tool.setuptools.dynamic]
version={attr="patchmatch.__version__"}
[tool.setuptools.packages.find]
include=["patchmatch", "patchmatch.csrc"]
[tool.setuptools.package-data]
"patchmatch"=['Makefile', 'csrc/*', 'travis.sh']
[project.optional-dependencies]
"dev"=["black", "flake8", "flake8-black", "isort", "pre-commit", "pylance"]
"dist"=[
"auditwheel; sys_platform=='linux'",
"build",
"delocate; sys_platform=='darwin'",
"pip-tools",
"pipdeptree",
"requests",
"twine",
]
"test"=["pytest", "pytest-coverage"]
[tool.black]
exclude='''
/(
.git
| .venv
| build
| csrc
| dist
)/
'''
include='.pyi?$'
line-length=88
source=['examples', 'patchmatch']
target-version=['py39']
[tool.coverage.report]
fail_under=75
[tool.isort]
profile="black"
[tool.pytest.ini_options]
addopts=["--cov-branch", "--cov-report=term:skip-covered", "--cov=patchmatch"]
minversion="6.0"
python_files=["test_*.py"]
testpaths=["tests"]