forked from dsoprea/PyHdHomeRun
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
38 lines (34 loc) · 1.22 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
from setuptools import setup, find_packages
import sys, os
import os.path
dev_path = os.path.dirname(__file__)
sys.path.insert(0, dev_path)
try:
import hdhr.libhdhr
except OSError as e:
print("Could not load HDHomeRun library: %s" % (e))
sys.exit(1)
else:
print("HDHomeRun libraries verified.")
long_description = "HDHomeRun interface library. Supports device discovery, " \
"channel-scanning, streaming, status inquiries, channel " \
"changes, etc.."""
setup(name='hdhr',
version='0.0.8',
description="HDHomeRun interface library for Python 3.",
long_description=long_description,
classifiers=['Development Status :: 4 - Beta',
'Natural Language :: English',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Multimedia :: Video :: Capture'],
keywords='tv television tuner tvtuner hdhomerun',
author='Nat Burns',
author_email='[email protected]',
url='https://github.com/burnnat/hdhr',
license='GPL 2',
packages=['hdhr'],
include_package_data=True,
zip_safe=True,
setup_requires=['wheel'],
install_requires=['setuptools']
)