-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 1.48 KB
/
pyproject.toml
File metadata and controls
47 lines (42 loc) · 1.48 KB
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
[build-system]
requires = ["scikit-build-core"]
build-backend = "scikit_build_core.build"
[project]
name = "opentimelineio-raven"
dynamic = ["version"]
description = "OpenTimelineIO viewer app made with Dear ImGui."
authors = [
{ name = "Contributors to the OpenTimelineIO project", email = "otio-discussion@lists.aswf.io"}
]
classifiers = [
"Programming Language :: C++",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Multimedia :: Video",
"Topic :: Multimedia :: Video :: Display",
"Topic :: Multimedia :: Video :: Non-Linear Editor",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Natural Language :: English"
]
keywords = ["film", "tv", "editing", "editorial", "edit", "non-linear", "time", "otio", "opentimelineio", "raven"]
license = { file = "LICENSE.txt" }
readme = "README.md"
requires-python = ">=3.9,<3.13"
[project.scripts]
raven = "otio_raven._wrapper:main"
[project.urls]
"Homepage" = "https://github.com/OpenTimelineIO/raven"
"Bug Tracker" = "https://github.com/OpenTimelineIO/raven/issues"
[tool.scikit-build]
cmake.version = ">=3.10"
cmake.build-type = "Release"
wheel.packages = ["python/otio_raven"]
wheel.install-dir = "otio_raven"
wheel.py-api = "py3"
[tool.scikit-build.metadata.version]
provider = "scikit_build_core.metadata.regex"
input = "VERSION.txt"
regex = "^(?P<version>.+)"
result = "{version}"