Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
34 lines (31 loc) · 1.04 KB

File metadata and controls

34 lines (31 loc) · 1.04 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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.1',
description='Python bindings for LIRC.',
author='Thomas Preston',
author_email='thomasmarkpreston@gmail.com',
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',
)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.