-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1.18 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
from setuptools import setup
with open('README.md') as f:
readme = f.read()
setup(name='tkVideoUtils',
version='1.3.0',
description='Python module for playing and recording videos with sound inside tkinter Label widget '
'using Pillow, imageio, and PyAudio, including media playback control, slider, '
'and fps aware buffering.',
long_description=readme,
long_description_content_type="text/markdown",
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
'Topic :: Multimedia :: Video :: Display'
],
keywords='tkVideoUtils tkinter video webcam display label pillow imageio wsarce sound',
url='https://github.com/wsarce/tkVideoUtils',
author='Walker Arce (wsarce)',
author_email='[email protected]',
license='MIT',
packages=['tkvideoutils'],
install_requires=[
'imageio',
'imageio-ffmpeg',
'pillow',
'opencv-python',
'ttkwidgets',
'pyaudio',
'ffmpy',
'moviepy'
],
include_package_data=True,
zip_safe=False
)