forked from wrtcoder/openwebif.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (22 loc) · 870 Bytes
/
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
# Copyright (c) 2018 Ronan Murray <https://github.com/ronanmu>
# Licensed under the MIT license.
# Used this guide to create module
# http://peterdowns.com/posts/first-time-with-pypi.html
from distutils.core import setup
setup(
name='enigma2.py',
version='0.01',
description='Provides a python interface to interact with an Engima2 set top box running OpenWebIf',
author='Ronan Murray',
author_email='[email protected]',
url='https://github.com/ronanmu/enigma2.py',
download_url = 'https://github.com/ronanmu/enigma2.py/tarball/0.01',
keywords='enigma2 openwebif python cgi interface',
packages=['enigma2'],
install_requires=['requests', 'jsonpath-rw'],
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Internet'
],
)