From 03ff523bfe2f2a3848470ce0ca46f2ef7116453c Mon Sep 17 00:00:00 2001 From: Christopher Rosell Date: Mon, 15 Aug 2011 04:37:22 +0200 Subject: Initial commit. --- setup.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..b7262b7 --- /dev/null +++ b/setup.py @@ -0,0 +1,18 @@ +#!/usr/bin/env python3 + +from setuptools import setup, find_packages + +version = "0.1" + +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:main'] + } +) -- cgit v1.2.3