| Line | |
|---|
| 1 | #!/usr/bin/env python |
|---|
| 2 | # -*- coding: iso-8859-1 -*- |
|---|
| 3 | |
|---|
| 4 | from setuptools import setup |
|---|
| 5 | |
|---|
| 6 | setup( |
|---|
| 7 | name = 'TracPrivateTickets', |
|---|
| 8 | version = '1.1.1', |
|---|
| 9 | packages = ['privatetickets'], |
|---|
| 10 | #package_data = { 'privatetickets': ['templates/*.cs', 'htdocs/*.js', 'htdocs/*.css' ] }, |
|---|
| 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 are involved with.", |
|---|
| 16 | license = "BSD", |
|---|
| 17 | keywords = "trac plugin ticket permissions security", |
|---|
| 18 | url = "http://trac-hacks.org/wiki/PrivateTickets", |
|---|
| 19 | classifiers = [ |
|---|
| 20 | 'Framework :: Trac', |
|---|
| 21 | ], |
|---|
| 22 | |
|---|
| 23 | #install_requires = ['TracWebAdmin'], |
|---|
| 24 | |
|---|
| 25 | entry_points = { |
|---|
| 26 | 'trac.plugins': [ |
|---|
| 27 | 'privatetickets.api = privatetickets.api', |
|---|
| 28 | 'privatetickets.view = privatetickets.view', |
|---|
| 29 | 'privatetickets.query = privatetickets.query', |
|---|
| 30 | 'privatetickets.report = privatetickets.report', |
|---|
| 31 | 'privatetickets.search = privatetickets.search', |
|---|
| 32 | ] |
|---|
| 33 | } |
|---|
| 34 | ) |
|---|
Note: See
TracBrowser
for help on using the repository browser.