forked from tonycpsu/mlbstreamer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (48 loc) · 1.3 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import sys
from os import path
from glob import glob
name = "mlbstreamer"
setup(name=name,
version="0.0.11.dev0",
description="MLB.tv Stream Browser",
author="Tony Cebzanov",
author_email="tonycpsu@gmail.com",
url="https://github.com/tonycpsu/mlbstreamer",
classifiers=[
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Intended Audience :: End Users/Desktop"
],
license = "GPLv2",
packages=find_packages(),
data_files=[
('share/doc/%s' % name, ["docs/config.yaml.sample"]),
],
include_package_data=True,
install_requires = [
"six",
"requests",
"lxml",
"pytz",
"tzlocal",
"pymemoize",
"orderedattrdict",
"pyyaml",
"py-dateutil",
"streamlink>=0.11.0",
"prompt_toolkit",
"urwid",
"urwid_utils>=0.1.2",
"panwid>=0.2.5"
],
test_suite="test",
entry_points = {
"console_scripts": [
"mlbstreamer=mlbstreamer.__main__:main",
"mlbplay=mlbstreamer.play:main"
],
}
)