Skip to content

Commit 9b165ee

Browse files
Initial commit.
0 parents  commit 9b165ee

4 files changed

Lines changed: 609 additions & 0 deletions

File tree

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
build
2+
dist
3+
*~
4+
MANIFEST

setup.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# -*- coding: utf-8 -*-
2+
3+
import os
4+
from distutils.core import setup, Extension
5+
6+
cUinput_module = Extension('cUinput',
7+
sources=['src/lib/cUinput.c'],
8+
libraries=['suinput'],
9+
)
10+
11+
setup(name='python-uinput',
12+
version='0.1',
13+
description='Simple Python API to the Linux uinput-system.',
14+
long_description='Simple Python API to the Linux uinput-system.',
15+
author='Tuomas Räsänen',
16+
author_email='tuos@codegrove.org',
17+
url='http://codegrove.org/python-uinput/',
18+
package_dir={'': 'src/lib'},
19+
py_modules=['uinput'],
20+
ext_modules=[cUinput_module],
21+
)

0 commit comments

Comments
 (0)