-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·26 lines (23 loc) · 929 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
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
from distutils.core import setup
setup(
name = 'libhdhomerun',
version = '0.1.2',
description = 'Bindings to libhdhomerun',
long_description = 'Bindings to the libhdhomerun shared library',
author = 'Gary Buhrmaster',
author_email = '[email protected]',
py_modules = ['libhdhomerun'],
url = 'https://github.com/garybuhrmaster/python-libhdhomerun',
license = "Apache License 2.0",
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Topic :: Software Development :: Libraries'
],
)