Skip to content

Commit 37bec21

Browse files
Preparing for PyPI-registering.
1 parent 0e7a21b commit 37bec21

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

setup.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,23 @@
1414
setup(name='python-uinput',
1515
version='0.1',
1616
description='Simple Python API to the Linux uinput-system.',
17-
long_description='Simple Python API to the Linux uinput-system.',
1817
author='Tuomas Räsänen',
1918
author_email='tuos@codegrove.org',
2019
url='http://codegrove.org/python-uinput/',
20+
download_url='http://codegrove.org/python-uinput/python-uinput-0.1.tar.gz',
2121
package_dir={'uinput': 'src'},
2222
packages=['uinput'],
2323
ext_modules=[pysuinput_module, codes_module],
2424
license='LGPLv3+',
2525
platforms=['Linux'],
26+
classifiers=[
27+
"Development Status :: 3 - Alpha",
28+
"Intended Audience :: Developers",
29+
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
30+
"Operating System :: POSIX :: Linux",
31+
"Topic :: System :: Operating System Kernels :: Linux",
32+
],
33+
long_description="""
34+
A high-level API to programmatically generate Linux input events.
35+
""",
2636
)

0 commit comments

Comments
 (0)