aboutsummaryrefslogtreecommitdiffhomepage
path: root/setup.py
blob: b7262b74f7f6f3a395de4588da712a5df346f7ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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']
      }
)