-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
67 lines (58 loc) · 1.96 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
[build-system]
requires = [
"hatchling",
"hatch-requirements-txt",
"hatch-fancy-pypi-readme>=22.5.0",
]
build-backend = "hatchling.build"
[project]
name = "gradio_imageslider"
version = "0.0.20"
description = """
A Gradio component for comparing two images.
This component can be used in several ways:
- as a **unified input / output** where users will upload a single image and an inference function will generate an image it can be compared to (see demo),
- as a **manual upload input** allowing users to compare two of their own images (which can then be passed along elsewhere, e.g. to a model),
- as **static output component** allowing users to compare two images generated by an inference function.
"""
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.9"
authors = [{ name = "pngwn", email = "[email protected]" }]
keywords = [
"machine learning",
"reproducibility",
"visualization",
"gradio",
"gradio custom component",
]
# Add dependencies here
dependencies = ["gradio", "pillow"]
classifiers = [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Visualization',
]
[project.urls]
repository = "https://github.com/pngwn/gradio-imageslider"
[tool.hatch.build]
artifacts = [
"backend/gradio_imageslider/boo",
"*.pyi",
"backend/gradio_imageslider/templates",
"backend/gradio_imageslider/templates",
"backend/gradio_imageslider/templates",
]
[tool.hatch.build.targets.wheel]
packages = ["backend/gradio_imageslider"]
[tool.hatch.metadata]
allow-direct-references = true