Skip to content

Commit a11bf58

Browse files
Enhanced the documentation a bit.
1 parent 37bec21 commit a11bf58

2 files changed

Lines changed: 22 additions & 8 deletions

File tree

README

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
python-uinput - Simple Python API to the Linux uinput-system
33
==============================================================
44

5-
:date: 2009-12-13
5+
:date: 2009-12-16
66

77
.. contents::
88

@@ -23,7 +23,13 @@ General information
2323
Requirements
2424
============
2525

26-
- `libsuinput <http://codegrove.org/libsuinput/>`_
26+
- Python 2.6. and development files for it:
27+
28+
- On Ubuntu::
29+
30+
sudo apt-get install python2.6-dev
31+
32+
- `libsuinput-0.1 <http://codegrove.org/libsuinput/0.1/>`_
2733

2834
Example usage
2935
=============
@@ -38,14 +44,20 @@ To create and use an uinput driver::
3844
Downloading
3945
===========
4046

41-
- Tarball is available at: http://codegrove.org/python-uinput/python-uinput-0.1.tar.gz
42-
- Public git-repository: http://github.com/tuos/python-uinput/ ::
47+
- Tarball is available at: http://codegrove.org/python-uinput/0.1/python-uinput-0.1.tar.gz
48+
- Latest sources from public git-repository: http://github.com/tuos/python-uinput/ ::
4349

4450
git clone git://github.com/tuos/python-uinput.git
4551

46-
Install
47-
=======
52+
Installing
53+
==========
4854

4955
The install-procedure adheres the "standard"::
5056

5157
python setup build && sudo python setup install
58+
59+
Bug reporting
60+
=============
61+
62+
Report bugs by sending email to tuos@codegrove.org or by opening an issue
63+
at http://github.com/tuos/python-uinput/issues .

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
author='Tuomas Räsänen',
1818
author_email='tuos@codegrove.org',
1919
url='http://codegrove.org/python-uinput/',
20-
download_url='http://codegrove.org/python-uinput/python-uinput-0.1.tar.gz',
20+
download_url='http://codegrove.org/python-uinput/0.1/python-uinput-0.1.tar.gz',
2121
package_dir={'uinput': 'src'},
2222
packages=['uinput'],
2323
ext_modules=[pysuinput_module, codes_module],
@@ -29,8 +29,10 @@
2929
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
3030
"Operating System :: POSIX :: Linux",
3131
"Topic :: System :: Operating System Kernels :: Linux",
32+
"Programming Language :: Python :: 2.6",
33+
"Programming Language :: C",
3234
],
3335
long_description="""
34-
A high-level API to programmatically generate Linux input events.
36+
A high-level API for generating Linux input events.
3537
""",
3638
)

0 commit comments

Comments
 (0)