1
mirror of https://github.com/streamlink/streamlink synced 2024-09-27 11:10:27 +02:00
streamlink/setup.py
Christopher Rosell 3957b734ed Refactor stream input/output.
- Now uses pbs library to handle subprocesses.
- Removed -c option as not all plugins may be based on subprocesses.
2012-05-25 17:26:11 +02:00

27 lines
754 B
Python

#!/usr/bin/env python3
from setuptools import setup, find_packages
from sys import version_info
version = "1.0.0"
deps = ["pbs"]
# require argparse on Python <2.7 and <3.2
if (version_info[0] == 2 and version_info[1] < 7) or \
(version_info[0] == 3 and version_info[1] < 2):
deps.append("argparse")
setup(name="livestreamer",
version=version,
description="Util to play various livestreaming services in custom player",
author="Christopher Rosell",
author_email="chrippa@tanuki.se",
license="BSD",
packages=["livestreamer", "livestreamer/plugins"],
package_dir={'': 'src'},
entry_points={
"console_scripts": ['livestreamer=livestreamer.cli:main']
},
install_requires=deps
)