forked from dsoprea/PySchedules
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (33 loc) · 1.33 KB
/
setup.py
File metadata and controls
36 lines (33 loc) · 1.33 KB
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
from setuptools import setup, find_packages
version = '0.2.22'
setup(name='pyschedules',
version=version,
description="Interface to Schedules Direct.",
long_description="""\
A complete library to pull channels, schedules, actors, lineups, and QAM-maps (channels.conf) data from Schedules Direct.""",
classifiers=['Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python',
'Topic :: Home Automation',
'Topic :: Multimedia :: Video :: Capture',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='dvb television tv cable schedules direct channel channels qam',
author='Dustin Oprea',
author_email='myselfasunder@gmail.com',
url='https://github.com/dsoprea/PySchedules',
license='GPL2',
packages=['pyschedules/examples'] + find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=True,
install_requires=[
'parsedatetime',
],
entry_points="""
# -*- Entry points: -*-
""",
scripts=[
'scripts/qam'
]
),