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