aboutsummaryrefslogtreecommitdiffhomepage
path: root/setup.py
blob: 8eb78c9aeddf18204e36c44b9a637d06a1909412 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/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.cli:main']
      },
      install_requires=[
          'argparse',
          ],
)