| 1 | #!/usr/bin/env python |
|---|
| 2 | |
|---|
| 3 | from distutils.core import setup |
|---|
| 4 | import sys |
|---|
| 5 | |
|---|
| 6 | if sys.version < '2.3.3': |
|---|
| 7 | from distutils.dist import DistributionMetadata |
|---|
| 8 | DistributionMetadata.classifiers = None |
|---|
| 9 | DistributionMetadata.download_url = None |
|---|
| 10 | |
|---|
| 11 | setup(name="PLWM", |
|---|
| 12 | version="2.6a", |
|---|
| 13 | packages=['plwm'], |
|---|
| 14 | author="Peter Liljenberg", |
|---|
| 15 | maintainer='Mike Meyer', |
|---|
| 16 | maintainer_email='mwm@mired.org', |
|---|
| 17 | description='Modularized X window manager for keyboard-loving programmers', |
|---|
| 18 | download_url="http://sourceforge.net/project/showfiles.php?group_id=1664", |
|---|
| 19 | url='http://plwm.sourceforge.net/', |
|---|
| 20 | license="GPL", |
|---|
| 21 | classifiers=["Development Status :: 5 - Production/Stable", |
|---|
| 22 | "Environment :: X11 Applications", |
|---|
| 23 | 'Intended Audience :: Developers', |
|---|
| 24 | 'Intended Audience :: End Users/Desktop', |
|---|
| 25 | 'License :: OSI Approved :: GNU General Public License (GPL)', |
|---|
| 26 | 'Natural Language :: English', |
|---|
| 27 | 'Operating System :: OS Independent', |
|---|
| 28 | 'Programming Language :: Python', |
|---|
| 29 | 'Topic :: Desktop Environment :: Window Managers', |
|---|
| 30 | 'Topic :: Software Development :: Libraries', |
|---|
| 31 | 'Topic :: Software Development :: Libraries :: Python Modules', |
|---|
| 32 | 'Topic :: Software Development :: User Interfaces']) |
|---|
| 33 | |
|---|
| 34 | |
|---|