| Line | |
|---|
| 1 | #!/usr/bin/env python |
|---|
| 2 | # -*- coding: iso-8859-1 -*- |
|---|
| 3 | import os |
|---|
| 4 | |
|---|
| 5 | from setuptools import setup |
|---|
| 6 | |
|---|
| 7 | setup( |
|---|
| 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.