-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
40 lines (35 loc) · 1.23 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
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 pyhdhomerun.hdhr
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='pyhdhomerun',
version='2.3.5',
description="HDHomeRun interface library.",
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='Dustin Oprea',
author_email='[email protected]',
url='https://github.com/dsoprea/PyHdHomeRun',
license='GPL 2',
packages=['pyhdhomerun'],
include_package_data=True,
zip_safe=True,
install_requires=[
'setuptools',
],
)