We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit 9b165eeCopy full SHA for 9b165ee
4 files changed
.gitignore
@@ -0,0 +1,4 @@
1
+build
2
+dist
3
+*~
4
+MANIFEST
setup.py
@@ -0,0 +1,21 @@
+# -*- coding: utf-8 -*-
+
+import os
+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