#!/usr/bin/env python # -*- coding: utf-8 -*- # # Copyright (C) 2003-2007 Edgewall Software # All rights reserved. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. The terms # are also available at http://trac.edgewall.org/wiki/TracLicense. # # This software consists of voluntary contributions made by many # individuals. For the exact contribution history, see the revision # history and logs, available at http://trac.edgewall.org/log/. from setuptools import setup, find_packages setup( name = 'Trac', version = '0.11', description = 'Integrated SCM, wiki, issue tracker and project environment', long_description = """ Trac is a minimalistic web-based software project management and bug/issue tracking system. It provides an interface to the Subversion revision control systems, an integrated wiki, flexible issue tracking and convenient report facilities. """, author = 'Edgewall Software', author_email = 'info@edgewall.com', license = 'BSD', url = 'http://trac.edgewall.org/', download_url = 'http://trac.edgewall.org/wiki/TracDownload', packages = find_packages(exclude=['*.tests']), package_data = { '': ['templates/*'], 'trac': ['htdocs/*.*', 'htdocs/README', 'htdocs/js/*', 'htdocs/css/*'], 'trac.wiki': ['default-pages/*'], }, test_suite = 'trac.test.suite', zip_safe = False, install_requires = [ 'setuptools>=0.6b1', 'Genshi>=0.4' ], extras_require = { 'Pygments': ['Pygments>=0.5'], 'reST': ['docutils>=0.3'], 'SilverCity': ['SilverCity>=0.9.4'], 'Textile': ['textile>=2.0'], }, entry_points = """ [console_scripts] trac-admin = trac.admin.console:run tracd = trac.web.standalone:main [trac.plugins] trac.about = trac.about trac.admin.console = trac.admin.console trac.admin.web_ui = trac.admin.web_ui trac.attachment = trac.attachment trac.db.mysql = trac.db.mysql_backend trac.db.postgres = trac.db.postgres_backend trac.db.sqlite = trac.db.sqlite_backend trac.mimeview.enscript = trac.mimeview.enscript trac.mimeview.patch = trac.mimeview.patch trac.mimeview.php = trac.mimeview.php trac.mimeview.pygments = trac.mimeview.pygments_renderer[Pygments] trac.mimeview.rst = trac.mimeview.rst[reST] trac.mimeview.silvercity = trac.mimeview.silvercity[SilverCity] trac.mimeview.txtl = trac.mimeview.txtl[Textile] trac.prefs = trac.prefs.web_ui trac.search = trac.search.web_ui trac.ticket.admin = trac.ticket.admin trac.ticket.query = trac.ticket.query trac.ticket.triage = trac.ticket.triage trac.ticket.report = trac.ticket.report trac.ticket.roadmap = trac.ticket.roadmap trac.ticket.web_ui = trac.ticket.web_ui trac.timeline = trac.timeline.web_ui trac.versioncontrol.svn_fs = trac.versioncontrol.svn_fs trac.versioncontrol.web_ui = trac.versioncontrol.web_ui trac.web.auth = trac.web.auth trac.wiki.macros = trac.wiki.macros trac.wiki.web_ui = trac.wiki.web_ui """, )