Skip to content

Commit

Permalink
build: [FEATURE REQUEST] pip install OpenImageIO
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Clark <[email protected]>
  • Loading branch information
aclark4life committed Oct 11, 2023
1 parent 2e1e5f9 commit 010d023
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
[project]
name = "OpenImageIO"
version = "2.4.0.dev1"
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]"},
]
requires-python = ">2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*, !=3.9.0"
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"

0 comments on commit 010d023

Please sign in to comment.