CoolFace
Apppublic

PCGao/MatchAnything

sourceHugging Faceapache-2.0updated 5mo agoView on Hugging Face
0likes
pyproject.toml42 linesDownload Raw Back to root
1[build-system]2requires = ["setuptools", "wheel"]3build-backend = "setuptools.build_meta"4 5[project]6name = "imcui"7description = "Image Matching Webui: A tool for matching images using sota algorithms with a Gradio UI"8version = "0.0.0"9authors = [10    {name = "vincentqyw"},11]12readme = "README.md"13requires-python = ">=3.7"14license = {file = "LICENSE"}15classifiers = [16    "Programming Language :: Python :: 3",17    "License :: OSI Approved :: Apache Software License",18    "Operating System :: OS Independent",19]20urls = {Repository = "https://github.com/Vincentqyw/image-matching-webui"}21dynamic = ["dependencies"]22 23 24[project.optional-dependencies]25dev = ["black", "flake8", "isort"]26 27 28[tool.setuptools]29packages = { find = { include = ["imcui*"] } }30include-package-data = true31 32 33[tool.setuptools.dynamic]34dependencies = {file = ["requirements.txt"]}35 36 37[tool.pytest.ini_options]38minversion = "6.0"39addopts = ["-ra", "--showlocals", "--strict-markers", "--strict-config"]40xfail_strict = true41testpaths = ["tests"]42