generated from OpenTimelineIO/otio-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
50 lines (45 loc) · 1.7 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
# SPDX-License-Identifier: Apache-2.0
# Copyright Contributors to the OpenTimelineIO project
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "otio-cmx3600-adapter"
version = "1.1.0"
description = "OpenTimelineIO CMX 3600 EDL Adapter"
authors = [
{ name="Contributors to the OpenTimelineIO project", email="otio-discussion@lists.aswf.io" },
]
license = { file="LICENSE" }
readme = "README.md"
requires-python = ">=3.7"
dependencies = [
"opentimelineio >= 0.17.0"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Multimedia :: Graphics",
"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",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Natural Language :: English"
]
keywords = ["film", "tv", "editing", "editorial", "edit", "non-linear", "edl", "time", "otio", "otio-adapter"]
[project.urls]
Homepage = "https://github.com/OpenTimelineIO/otio-cmx3600-adapter"
Tracker = "https://github.com/OpenTimelineIO/otio-cmx3600-adapter/issues"
[project.entry-points."opentimelineio.plugins"]
otio_cmx3600_adapter = "otio_cmx3600_adapter"
[tool.hatch.build.targets.sdist]
# Ensure the sdist includes a setup.py for older pip versions
support-legacy = true
exclude = [".github"]