-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
56 lines (52 loc) · 1.79 KB
/
setup.py
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
# Copyright Contributors to the OpenTimelineIO project
# Copyright The Foundry Visionmongers Ltd
# SPDX-License-Identifier: Apache-2.0
import io
import setuptools
with io.open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setuptools.setup(
name="otio-openassetio",
author="The Foundry Visionmongers Ltd",
author_email="[email protected]",
version="0.0.0",
description="Adds asset resolution to OpenTimelineIO via the OpenAssetIO API",
long_description=long_description,
long_description_content_type="text/markdown",
# Replace url with your repo
url="https://github.com/TheFoundryVisionmnogers/otio-openassetio",
packages=setuptools.find_packages(),
entry_points={"opentimelineio.plugins": "otio_openassetio = otio_openassetio"},
package_data={
"otio_openassetio": [
"plugin_manifest.json",
],
},
install_requires=[
"OpenTimelineIO >= 0.12.0",
"openassetio >= 1.0.0b1.rev0",
"openassetio-mediacreation >= 1.0.0a9",
],
extras_require={
"dev": [
"black",
"pytest",
"flake8",
"twine",
"openassetio-manager-bal >= 1.0.0a16"
]
},
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Topic :: Multimedia :: Video",
"Topic :: Multimedia :: Video :: Display",
"Topic :: Multimedia :: Video :: Non-Linear Editor",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Operating System :: POSIX :: Linux ",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
],
)