File indexing completed on 2024-04-14 14:59:58

0001 # SPDX-License-Identifier: MIT
0002 # SPDX-FileCopyrightText: 2022 The KDE Community
0003 
0004 import io
0005 import setuptools
0006 
0007 with io.open("README.md", "r", encoding="utf-8") as f:
0008     long_description = f.read()
0009 
0010 
0011 setuptools.setup(
0012     name="otio-kdenlive-adapter",
0013     author="Kdenlive Community",
0014     author_email="kdenlive@kde.org",
0015     version="0.0.1",
0016     description="Short description of your plugin",
0017     long_description=long_description,
0018     long_description_content_type="text/markdown",
0019     url="https://invent.kde.org/jlskuz/otio-kdenlive-adapter",
0020     packages=setuptools.find_packages(),
0021     entry_points={
0022         "opentimelineio.plugins": "otio_kdenlive_adapter = otio_kdenlive_adapter"
0023     },
0024     package_data={
0025         "otio_kdenlive_adapter": [
0026             "plugin_manifest.json",
0027         ],
0028     },
0029     install_requires=[
0030         "OpenTimelineIO >= 0.15.0"
0031     ],
0032     extras_require={
0033         "dev": [
0034             "flake8",
0035             "pytest",
0036             "pytest-cov",
0037             "twine"
0038         ]
0039     },
0040     classifiers=[
0041         "Development Status :: 4 - Beta",
0042         "Intended Audience :: Developers",
0043         "Topic :: Multimedia :: Video",
0044         "Topic :: Multimedia :: Video :: Display",
0045         "Topic :: Multimedia :: Video :: Non-Linear Editor",
0046         "Topic :: Software Development :: Libraries :: Python Modules",
0047         "Programming Language :: Python :: 2",
0048         "Programming Language :: Python :: 2.7",
0049         "Programming Language :: Python :: 3",
0050         "Programming Language :: Python :: 3.7",
0051         "Programming Language :: Python :: 3.8",
0052         "Operating System :: OS Independent",
0053         "License :: OSI Approved :: MIT License",
0054         "Natural Language :: English"
0055     ]
0056 )