source: simpleticketplugin/tags/1.1.3/setup.py

Last change on this file was 3416, checked in by Noah Kantrowitz, 16 years ago

Change my email to avoid Yahoo, which decided to brake my scraper script recently.

File size: 749 bytes
Line 
1#!/usr/bin/env python
2# -*- coding: iso-8859-1 -*-
3
4from setuptools import setup
5
6setup(
7    name = 'TracSimpleTicket',
8    version = '1.1.3',
9    packages = ['simpleticket'],
10
11    author = "Noah Kantrowitz",
12    author_email = "noah@coderanger.net",
13    description = "Restricted ticket entry form for Trac",
14    long_description = "A Trac plugin that provides a configurable ticket entry form, with selected fields hidden from the user.",
15    license = "BSD",
16    keywords = "trac plugin restricted ticket",
17    url = "http://trac-hacks.org/wiki/SimpleTicketPlugin",
18    classifiers = [
19        'Framework :: Trac',
20    ],
21
22    entry_points = {
23        'trac.plugins': [
24            'simpleticket.web_ui = simpleticket.web_ui',
25        ],
26    }
27)
Note: See TracBrowser for help on using the repository browser.