#!/usr/bin/env python # -*- coding: iso-8859-1 -*- from setuptools import setup setup( name = 'TracSimpleTicket', version = '1.1.3', packages = ['simpleticket'], author = "Noah Kantrowitz", author_email = "noah@coderanger.net", description = "Restricted ticket entry form for Trac", long_description = "A Trac plugin that provides a configurable ticket entry form, with selected fields hidden from the user.", license = "BSD", keywords = "trac plugin restricted ticket", url = "http://trac-hacks.org/wiki/SimpleTicketPlugin", classifiers = [ 'Framework :: Trac', ], entry_points = { 'trac.plugins': [ 'simpleticket.web_ui = simpleticket.web_ui', ], } )