-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (22 loc) · 857 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) 2015 Finbarr Brady <https://github.com/fbradyirl>
# 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='openwebif.py',
version='0.9',
description='Provides a python interface to interact with a device running OpenWebIf',
author='Finbarr Brady',
author_email='[email protected]',
url='https://github.com/fbradyirl/openwebif.py',
download_url = 'https://github.com/fbradyirl/openwebif.py/tarball/0.9',
keywords='enigma2 openwebif python cgi interface',
packages=['openwebif'],
install_requires=['requests'],
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Internet'
],
)