-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
66 lines (62 loc) · 2.02 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
57
58
59
60
61
62
63
64
65
66
# Copyright Contributors to the OpenTimelineIO project
#
# SPDX-License-Identifier: MIT OR 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-avb-adapter",
author="Mark Reid",
author_email="[email protected]",
version="0.0.1",
description="OpenTimelineIO Avid Bin (AVB) Adapter",
long_description=long_description,
long_description_content_type="text/markdown",
# Replace url with your repo
url="https://github.com/markreidvfx/otio-avb-adapter",
platforms='any',
packages=setuptools.find_packages(where='src'),
package_dir={'': 'src'},
entry_points={
"opentimelineio.plugins": "otio_avb_adapter = otio_avb_adapter"
},
package_data={
"otio_avb_adapter": [
"plugin_manifest.json",
],
},
install_requires=[
"OpenTimelineIO>=0.14.1",
"pyavb>=1.3.0",
],
extras_require={
"dev": [
"flake8",
"pytest",
"pytest-cov",
"twine"
]
},
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*,' + \
'!=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*',
classifiers=[
"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",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English"
]
)