root/trunk/ticketvalidation/setup.py @ 155

Revision 155, 1.1 KB (checked in by mbooth, 7 months ago)

Give the main module a more descriptive name.

RevLine 
[144]1#!/usr/bin/env python
2# Copyright (C) 2010 Mat Booth <mat@matbooth.co.uk>
3# All rights reserved.
4#
5# This software is licensed as described in the file COPYING, which
6# you should have received as part of this distribution.
7
8from setuptools import setup
9
10setup(
11    name='TicketValidation',
12    version='0.0.1',
13    author='Mat Booth',
14    author_email='mat@matbooth.co.uk',
15    url='http://www.matbooth.co.uk/trac/wiki/TicketValidationStart',
16    license='BSD',
[150]17    description='Support for conditional required and hidden fields in Trac',
[146]18    long_description='This plugin adds capability to make built-in and custom ticket fields required or hidden based on a configurable boolean condition.',
[144]19    packages=['ticketvalidation'],
20    package_data={
21        'ticketvalidation' : [
22            'htdocs/css/*.css',
23            'htdocs/js/*.js',
24            'templates/*.html',
25            ]
26        },
27    entry_points={
28        'trac.plugins': [
29           'ticketvalidation.admin = ticketvalidation.admin',
[155]30           'ticketvalidation.rules = ticketvalidation.rules',
[144]31           ]
32        },
[146]33    install_requires = [
34        'pyparsing>=1.5',
35        ],
36    )
Note: See TracBrowser for help on using the browser.