|
Last change
on this file was
17279,
checked in by Ryan J Ollos, 5 years ago
|
|
TracPrivateTickets 2.4.0dev: Prepare for development
|
|
File size:
1.1 KB
|
| Rev | Line | |
|---|
| [1467] | 1 | #!/usr/bin/env python |
|---|
| [11487] | 2 | # -*- coding: utf-8 -*- |
|---|
| [11496] | 3 | # |
|---|
| 4 | # Copyright (C) 2008 Noah Kantrowitz |
|---|
| [16207] | 5 | # Copyright (C) 2012-2017 Ryan J Ollos |
|---|
| [11496] | 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. |
|---|
| [11487] | 10 | |
|---|
| [11496] | 11 | |
|---|
| [3598] | 12 | import os |
|---|
| [1467] | 13 | |
|---|
| 14 | from setuptools import setup |
|---|
| 15 | |
|---|
| 16 | setup( |
|---|
| [16207] | 17 | name='TracPrivateTickets', |
|---|
| [17279] | 18 | version='2.4.0', |
|---|
| [16207] | 19 | packages=['privatetickets'], |
|---|
| [1467] | 20 | |
|---|
| [16207] | 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=[ |
|---|
| [1467] | 32 | 'Framework :: Trac', |
|---|
| 33 | ], |
|---|
| [16207] | 34 | |
|---|
| 35 | entry_points={ |
|---|
| [1467] | 36 | 'trac.plugins': [ |
|---|
| [3460] | 37 | 'privatetickets.policy = privatetickets.policy', |
|---|
| 38 | ], |
|---|
| 39 | }, |
|---|
| [16207] | 40 | install_requires=['Trac'], |
|---|
| 41 | test_suite='privatetickets.tests.test_suite', |
|---|
| [1467] | 42 | ) |
|---|
Note: See
TracBrowser
for help on using the repository browser.