forked from scivision/PyLivestream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 913 Bytes
/
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
#!/usr/bin/env python
tests_require=['nose','coveralls']
from setuptools import setup,find_packages
setup(name='YouTubeLiveFFmpeg',
packages=find_packages(),
version = '1.0.3',
author='Michael Hirsch, Ph.D.',
url='https://github.com/scivision/ffmpeg-youtube-live',
description='Easy streaming using FFmpeg to YouTube Live.',
long_description=open("README.rst").read(),
python_requires='>=3.6',
tests_require=tests_require,
extras_require={'tests':tests_require},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Multimedia :: Graphics :: Capture :: Screen Capture',
'Topic :: Multimedia :: Sound/Audio :: Capture/Recording',
],
)