forked from lkwq007/PyPatchMatch
-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
46 lines (41 loc) · 1.16 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
[build-system]
requires = [
"setuptools >= 65.7.0",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = 'pypatchmatch'
dynamic = [
"version"
]
requires-python = ">=3.9"
description = 'This library implements the PatchMatch based inpainting algorithm.'
readme = {file = "README.md", content-type = "text/markdown", charset = "UTF-8"}
license = {file = "LICENSE"}
authors = [
{name = "The InvokeAI Project",email = "[email protected]"},
{name = "Kyle Schouviller",email = "[email protected]"},
{name = "Matthias Wild",email="[email protected]"},
{name = "Younesse ANDAM",email = "[email protected]"}
]
dependencies = [
"numpy",
"pillow",
"tqdm"
]
[project.urls]
'Source Code' = 'https://github.com/invoke-ai/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'
]