source: privateticketsplugin/tags/2.0.2/setup.py

Last change on this file was 3760, checked in by Noah Kantrowitz, 15 years ago

Typo. (closes #3117)

File size: 955 bytes
Line 
1#!/usr/bin/env python
2# -*- coding: iso-8859-1 -*-
3import os
4
5from setuptools import setup
6
7setup(
8    name = 'TracPrivateTickets',
9    version = '2.0.2',
10    packages = ['privatetickets'],
11
12    author = 'Noah Kantrowitz',
13    author_email = 'noah@coderanger.net',
14    description = 'Modified ticket security for Trac.',
15    #long_description = 'Allow users to only see tickets they are involved with.',
16    long_description = open(os.path.join(os.path.dirname(__file__), 'README')).read(),
17    license = 'BSD',
18    keywords = 'trac plugin ticket permissions security',
19    url = 'http://trac-hacks.org/wiki/PrivateTicketsPlugin',
20    download_url = 'http://trac-hacks.org/svn/privateticketsplugin/0.11#egg=TracPrivateTickets-dev',
21    classifiers = [
22        'Framework :: Trac',
23    ],
24   
25    install_requires = ['Trac'],
26
27    entry_points = {
28        'trac.plugins': [
29            'privatetickets.policy = privatetickets.policy',
30        ],
31    },
32)
Note: See TracBrowser for help on using the repository browser.