| 1 |
"""Jambu : direct stepped navigation control of a programs UI |
|---|
| 2 |
|
|---|
| 3 |
Allows switch users to control an application by stepping through it's UI |
|---|
| 4 |
|
|---|
| 5 |
This file is a standard distutils config file.""" |
|---|
| 6 |
|
|---|
| 7 |
doclines = __doc__.split("\n") |
|---|
| 8 |
|
|---|
| 9 |
classifiers = """\ |
|---|
| 10 |
Development Status :: 2 - Pre-Alpha |
|---|
| 11 |
Intended Audience :: Developers |
|---|
| 12 |
License :: OSI Approved :: BSD License |
|---|
| 13 |
Programming Language :: Python |
|---|
| 14 |
Environment :: X11 Applications :: Gnome |
|---|
| 15 |
Topic :: Adaptive Technologies |
|---|
| 16 |
Operating System :: POSIX :: Linux |
|---|
| 17 |
""" |
|---|
| 18 |
|
|---|
| 19 |
from distutils.core import setup |
|---|
| 20 |
setup(name='jambu', |
|---|
| 21 |
version='0.0.7', |
|---|
| 22 |
maintainer="Full Measure", |
|---|
| 23 |
maintainer_email="jambu@fullmeasure.co.uk", |
|---|
| 24 |
url = "http://jambu.fullmeasure.co.uk", |
|---|
| 25 |
license = "http://www.opensource.org/licenses/bsd-license.php", |
|---|
| 26 |
platforms = ["any"], |
|---|
| 27 |
description = doclines[0], |
|---|
| 28 |
classifiers = filter(None, classifiers.split("\n")), |
|---|
| 29 |
long_description = "\n".join(doclines[2:]), |
|---|
| 30 |
package_dir = {'': 'src/lib'}, |
|---|
| 31 |
packages=['jambu'], |
|---|
| 32 |
scripts=['src/jambu'], |
|---|
| 33 |
data_files=[('share/doc/jambu', |
|---|
| 34 |
['README', 'AUTHORS', 'LICENSE', 'NEWS', 'ChangeLog'])] |
|---|
| 35 |
) |
|---|