Skip to content

Commit dfdce76

Browse files
committed
this installs the Makefile into the distro during pip install
- Also relaxes the python requirement to >=3.9
1 parent 161271e commit dfdce76

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,12 @@
1111
setup(
1212
name='pypatchmatch',
1313
packages=['patchmatch'],
14-
version='0.1.1',
14+
version='0.1.2',
1515
url='https://github.com/invoke-ai/PyPatchMatch',
1616
python_requires='>=3.9',
1717
install_requires=requirements,
1818
description='This library implements the PatchMatch based inpainting algorithm.',
1919
long_description=readme,
2020
long_description_content_type="text/markdown",
21+
package_data={'patchmatch': ['Makefile']},
2122
)

0 commit comments

Comments
 (0)