diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index a216df4..62a8cdb 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -56,6 +56,7 @@ jobs: CIBW_ARCHS_WINDOWS: auto ARM64 CIBW_TEST_SKIP: "*macosx* *win* *aarch64 cp31* pp* *musllinux*" CIBW_ENVIRONMENT: "PIP_ONLY_BINARY=:all:" + # CIBW_BEFORE_BUILD: "pip install --prefer-binary fire numpy opencv-python" - name: Verify clean directory run: git diff --exit-code diff --git a/README.md b/README.md index 47e0105..5a1ff12 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,7 @@ pip install pybind11-pixelmatch diff image ``` +pip install fire # for CLI python3 -m pybind11_pixelmatch --help python3 -m pybind11_pixelmatch data/pic1.png data/pic2.png diff_output.png ``` diff --git a/pyproject.toml b/pyproject.toml index 4acdb8a..592ac7c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,12 +5,13 @@ build-backend = "scikit_build_core.build" [project] name = "pybind11_pixelmatch" -version = "0.1.1" +version = "0.1.2" description="A C++17 port of the JavaScript pixelmatch library (with python binding), providing a small pixel-level image comparison library." readme = "README.md" authors = [ { name = "district10", email = "dvorak4tzx@gmail.com" }, ] +homepage = "https://github.com/cubao/pybind11_pixelmatch" requires-python = ">=3.7" classifiers = [ "Development Status :: 4 - Beta", @@ -23,7 +24,6 @@ classifiers = [ "Programming Language :: Python :: 3.11", ] dependencies = [ - "fire", "numpy", "opencv-python", ]