tkvideo/setup.py

31 lines
1,010 B
Python
Raw Normal View History

2020-11-22 02:41:52 +00:00
from setuptools import setup
with open('README.md') as f:
readme = f.read()
2020-11-22 18:36:19 +00:00
setup(name = 'tkVideo',
version = '0.1',
2020-11-22 02:41:52 +00:00
description = 'Python module for playing videos (without sound) inside tkinter Label widget using Pillow and imageio',
long_description = readme,
long_description_content_type = "text/markdown",
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
'Topic :: Multimedia :: Video :: Display'
],
keywords = 'tkvideo tkinter video display label pillow imageio huskee',
url = 'https://github.com/huskeee/tkvideo',
author = 'Xenofon Konitsas (huskee)',
author_email = 'konitsasx@gmail.com',
license = 'MIT',
packages = ['tkvideo'],
install_requires = [
'imageio',
'imageio-ffmpeg',
'pillow'
],
include_package_data = True,
zip_safe = False
)