-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
51 lines (49 loc) · 1.56 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
import io
import setuptools
with io.open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setuptools.setup(
name="otio-mlt-adapter",
author="Daniel Flehner Heen",
author_email="flehnerheener@gmail.com",
version="0.3.0",
description="MLT adapter for OpenTimelineIO",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/apetrynet/otio-mlt-adapter",
packages=setuptools.find_packages(),
entry_points={
"opentimelineio.plugins": "otio_mlt_adapter = otio_mlt_adapter"
},
package_data={
"otio_mlt_adapter": [
"plugin_manifest.json",
],
},
install_requires=[
"OpenTimelineIO >= 0.12.0"
],
extras_require={
"dev": [
"flake8",
"pytest",
"twine"
]
},
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",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Natural Language :: English"
]
)