source: privateticketsplugin/tags/2.3.0/setup.py

Last change on this file was 17278, checked in by Ryan J Ollos, 5 years ago

TracPrivateTickets 2.3.0: Release 2.3.0

Refs #13421, #13459.

File size: 1.1 KB
Line 
1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3#
4# Copyright (C) 2008 Noah Kantrowitz
5# Copyright (C) 2012-2017 Ryan J Ollos
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.
10
11
12import os
13
14from setuptools import setup
15
16setup(
17    name='TracPrivateTickets',
18    version='2.3.0',
19    packages=['privatetickets'],
20
21    author='Noah Kantrowitz',
22    author_email='noah@coderanger.net',
23    maintainer='Ryan J Ollos',
24    maintainer_email='ryan.j.ollos@gmail.com',
25    description='Modified ticket security for Trac.',
26    long_description=open(os.path.join(os.path.dirname(__file__),
27                                       'README')).read(),
28    license='BSD 3-Clause',
29    keywords='trac plugin ticket permissions security',
30    url='https://trac-hacks.org/wiki/PrivateTicketsPlugin',
31    classifiers=[
32        'Framework :: Trac',
33    ],
34
35    entry_points={
36        'trac.plugins': [
37            'privatetickets.policy = privatetickets.policy',
38        ],
39    },
40    install_requires=['Trac'],
41    test_suite='privatetickets.tests.test_suite',
42)
Note: See TracBrowser for help on using the repository browser.