-
Notifications
You must be signed in to change notification settings - Fork 606
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: Add support for
pip install OpenImageIO
Signed-off-by: Alex Clark <[email protected]>
- Loading branch information
1 parent
24f172a
commit ac74a20
Showing
1 changed file
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
[project] | ||
name = "OpenImageIO" | ||
version = "2.6.0.2" | ||
description = "Reading, writing, and processing images in a wide variety of file formats, using a format-agnostic API, aimed at VFX applications." | ||
authors = [ | ||
{name = "Larry Gritz", email = "[email protected]"}, | ||
] | ||
readme = "README.md" | ||
license = {text = "Apache-2.0, BSD-3-Clause"} | ||
keywords = [""] | ||
maintainers = [ | ||
{name = "Larry Gritz", email = "[email protected]"}, | ||
] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Natural Language :: English", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 2", | ||
"Programming Language :: Python :: 2.7", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Topic :: Multimedia :: Graphics", | ||
"Topic :: Multimedia :: Video", | ||
"Topic :: Multimedia :: Video :: Display", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
] | ||
|
||
[project.urls] | ||
Homepage = "http://openimageio.org/" | ||
Source = "https://github.com/OpenImageIO/oiio" | ||
Documentation = "https://openimageio.readthedocs.io" | ||
Issues = "https://github.com/OpenImageIO/oiio/issues" | ||
|
||
[project.scripts] | ||
iconvert = "OpenImageIO._commands:iconvert" | ||
idiff = "OpenImageIO._commands:idiff" | ||
igrep = "OpenImageIO._commands:igrep" | ||
iinfo = "OpenImageIO._commands:iinfo" | ||
maketx = "OpenImageIO._commands:maketx" | ||
oiiotool = "OpenImageIO._commands:oiiotool" | ||
testtex = "OpenImageIO._commands:testtex" | ||
|
||
[build-system] | ||
requires = ["scikit-build-core"] | ||
build-backend = "scikit_build_core.build" |