forked from tompreston/python-lirc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 1.04 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
import sys
from distutils.core import setup, Extension
lirc_ext = Extension(
'lirc',
include_dirs=['/usr/include/lirc/'],
libraries=['lirc_client'],
library_dirs=['/usr/lib'],
sources=['lirc/lirc.c']
)
setup(
name='python-lirc',
version='1.2.3',
description='Python bindings for LIRC.',
author='Thomas Preston',
author_email='[email protected]',
license='GPLv3+',
url='https://github.com/tompreston/python-lirc',
ext_modules=[lirc_ext],
long_description=open('README.md').read() + open('CHANGELOG').read(),
classifiers=[
"License :: OSI Approved :: GNU Affero General Public License v3 or "
"later (AGPLv3+)",
"Programming Language :: Cython",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='lirc cython remote ir infrared',
)