This file looks large and may slow your browser down if we attempt
to syntax highlight it, so we are showing it without any
pretty colors.
Highlight
it anyway.
| 1 |
from HLS import __version__ |
| 2 |
|
| 3 |
from setuptools import setup, find_packages |
| 4 |
setup( |
| 5 |
name = "HLSPlayer", |
| 6 |
version = __version__, |
| 7 |
packages = find_packages(), |
| 8 |
entry_points = { |
| 9 |
'console_scripts': [ 'hls-player = HLS.player:main' ] |
| 10 |
}, |
| 11 |
|
| 12 |
author = "Marc-Andre Lureau", |
| 13 |
author_email = "marcandre.lureau@gmail.com", |
| 14 |
description = "HTTP Live Streaming player", |
| 15 |
license = "GNU GPL", |
| 16 |
keywords = "video streaming live", |
| 17 |
) |