| Rev | Line | |
|---|
| [997] | 1 | #!/usr/bin/env python |
|---|
| [15199] | 2 | # -*- coding: utf-8 -*- |
|---|
| 3 | # |
|---|
| 4 | # Copyright (C) 2006-2008 Noah Kantrowitz <noah@coderanger.net> |
|---|
| 5 | # Copyright (C) 2011-2016 Ryan J Ollos <ryan.j.ollos@gmail.com> |
|---|
| 6 | # All rights reserved. |
|---|
| 7 | # |
|---|
| 8 | # This software is licensed as described in the file COPYING, which |
|---|
| 9 | # you should have received as part of this distribution. |
|---|
| [997] | 10 | |
|---|
| 11 | from setuptools import setup |
|---|
| 12 | |
|---|
| 13 | setup( |
|---|
| [13072] | 14 | name='TracSimpleTicket', |
|---|
| 15 | version='5.0', |
|---|
| 16 | packages=['simpleticket'], |
|---|
| 17 | author='Noah Kantrowitz', |
|---|
| 18 | author_email='noah+tracplugins@coderanger.net', |
|---|
| 19 | maintainer='Ryan J Ollos', |
|---|
| 20 | maintainer_email='ryan.j.ollos@gmail.com', |
|---|
| 21 | description='Restricted ticket entry form for Trac', |
|---|
| 22 | long_description="""A Trac plugin that provides a configurable ticket |
|---|
| 23 | entry form, with selected fields hidden from the user.""", |
|---|
| [15199] | 24 | license='3-Clause BSD', |
|---|
| [13072] | 25 | keywords='trac plugin restricted ticket', |
|---|
| [15200] | 26 | url='https://trac-hacks.org/wiki/SimpleTicketPlugin', |
|---|
| [13072] | 27 | classifiers=[ |
|---|
| [1547] | 28 | 'Framework :: Trac', |
|---|
| [13072] | 29 | ], |
|---|
| 30 | install_requires=['Trac'], |
|---|
| 31 | entry_points={ |
|---|
| [997] | 32 | 'trac.plugins': [ |
|---|
| 33 | 'simpleticket.web_ui = simpleticket.web_ui', |
|---|
| 34 | ], |
|---|
| 35 | } |
|---|
| 36 | ) |
|---|
Note: See
TracBrowser
for help on using the repository browser.