-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
34 lines (31 loc) · 1.01 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
#!/usr/bin/python
"""
epgsnoop
========
epgsnoop is a python package which wraps the dvbsnoop program
and generates XMLTV data. The data is usable for MythTV and
other PVR systems which support the XMLTV data format.
epgsnoop is only currently known to be in use in New Zealand.
Many of the processors are possibly currently targetted to the
EIT data from there. Corrections and additions are welcome.
"""
from distutils.core import setup
setup(
name='epgsnoop',
version='0.84',
description='A wrapper around the dvbsnoop program to create XMLTV comliant data.',
long_description=__doc__,
author='Hadley Rich',
author_email='[email protected]',
url='http://launchpad.net/epgsnoop',
download_url='http://launchpad.net/epgsnoop',
packages=['epgsnoop'],
scripts=['scripts/epgsnoop'],
license='MIT',
platforms='Linux',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Development Status :: 3 - Alpha',
],
)