Changeset 176 for cleverbox/trunk

Show
Ignore:
Timestamp:
08/12/07 15:31:42 (5 years ago)
Author:
trivoallan
Message:

cleverbox : added Trove classifiers and better description management in `setup.py. refs #16

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • cleverbox/trunk/setup.py

    r175 r176  
    11#!/usr/bin/env python 
     2 
     3"""Cleverbox : Script for automating multiple trac instances deployment and maintenance. 
     4 
     5The Cleverbox sits on top of Trac (http://trac.edgewall.org) and Subversion (http://subversion.tigris.org).  
     6It provides an interactive shell for deploying and maintaining instances of both projects. 
     7""" 
    28 
    39# Automatically install setuptools if needed. 
     
    1016from setuptools import setup, find_packages 
    1117 
     18classifiers = """\ 
     19Development Status :: 4 - Beta 
     20Environment :: Console 
     21Intended Audience :: System Administrators 
     22License :: OSI Approved :: GNU General Public License (GPL) 
     23Natural Language :: English 
     24Operating System :: POSIX :: Linux 
     25Topic :: Software Development :: Bug Tracking 
     26Topic :: System :: Systems Administration 
     27Topic :: Utilities 
     28""" 
     29 
     30doclines = __doc__.split("\n") 
     31 
    1232setup( 
    1333     
     
    1636    version='0.5.dev', 
    1737    description='Script for automating multiple trac instances deployment and maintenance.', 
    18     long_description='The Cleverbox sits on top of Trac (http://trac.edgewall.org) and Subversion (http://subversion.tigris.org). It provides an interactive shell for deploying and maintaining instances of both projects.', 
    1938    author='Tristan Rivoallan', 
    2039    author_email='trivoallan@clever-age.com', 
    2140    url='http://www.clever-age.org/trac/wiki/cleverbox', 
    2241    license='GPLv3', 
     42    classifiers = filter(None, classifiers.split("\n")), 
     43    long_description = "\n".join(doclines[2:]), 
    2344     
    2445    # Files