Changeset 176 for cleverbox/trunk
- Timestamp:
- 08/12/07 15:31:42 (5 years ago)
- Files:
-
- 1 modified
-
cleverbox/trunk/setup.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cleverbox/trunk/setup.py
r175 r176 1 1 #!/usr/bin/env python 2 3 """Cleverbox : Script for automating multiple trac instances deployment and maintenance. 4 5 The Cleverbox sits on top of Trac (http://trac.edgewall.org) and Subversion (http://subversion.tigris.org). 6 It provides an interactive shell for deploying and maintaining instances of both projects. 7 """ 2 8 3 9 # Automatically install setuptools if needed. … … 10 16 from setuptools import setup, find_packages 11 17 18 classifiers = """\ 19 Development Status :: 4 - Beta 20 Environment :: Console 21 Intended Audience :: System Administrators 22 License :: OSI Approved :: GNU General Public License (GPL) 23 Natural Language :: English 24 Operating System :: POSIX :: Linux 25 Topic :: Software Development :: Bug Tracking 26 Topic :: System :: Systems Administration 27 Topic :: Utilities 28 """ 29 30 doclines = __doc__.split("\n") 31 12 32 setup( 13 33 … … 16 36 version='0.5.dev', 17 37 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.',19 38 author='Tristan Rivoallan', 20 39 author_email='trivoallan@clever-age.com', 21 40 url='http://www.clever-age.org/trac/wiki/cleverbox', 22 41 license='GPLv3', 42 classifiers = filter(None, classifiers.split("\n")), 43 long_description = "\n".join(doclines[2:]), 23 44 24 45 # Files
