|
Last change
on this file was
11178,
checked in by Ryan J Ollos, 12 years ago
|
|
Refs #9722: Check if a ticket field is None before trying to add it to the list of fields to be filtered (or not to be filtered, depending on the show_only setting).
|
|
File size:
880 bytes
|
| Line | |
|---|
| 1 | #!/usr/bin/env python |
|---|
| 2 | # -*- coding: iso-8859-1 -*- |
|---|
| 3 | |
|---|
| 4 | from setuptools import setup |
|---|
| 5 | |
|---|
| 6 | setup( |
|---|
| 7 | name = 'TracSimpleTicket', |
|---|
| 8 | version = '4.0', |
|---|
| 9 | packages = ['simpleticket'], |
|---|
| 10 | author = 'Noah Kantrowitz', |
|---|
| 11 | author_email = 'noah+tracplugins@coderanger.net', |
|---|
| 12 | maintainer = 'Ryan J Ollos', |
|---|
| 13 | maintainer_email = 'ryan.j.ollos@gmail.com', |
|---|
| 14 | description = 'Restricted ticket entry form for Trac', |
|---|
| 15 | long_description = 'A Trac plugin that provides a configurable ticket entry form, with selected fields hidden from the user.', |
|---|
| 16 | license = 'BSD', |
|---|
| 17 | keywords = 'trac plugin restricted ticket', |
|---|
| 18 | url = 'http://trac-hacks.org/wiki/SimpleTicketPlugin', |
|---|
| 19 | classifiers = [ |
|---|
| 20 | 'Framework :: Trac', |
|---|
| 21 | ], |
|---|
| 22 | install_requires = ['Trac'], |
|---|
| 23 | entry_points = { |
|---|
| 24 | 'trac.plugins': [ |
|---|
| 25 | 'simpleticket.web_ui = simpleticket.web_ui', |
|---|
| 26 | ], |
|---|
| 27 | } |
|---|
| 28 | ) |
|---|
Note: See
TracBrowser
for help on using the repository browser.