|
Revision 23, 0.5 KB
(checked in by wingel, 2 years ago)
|
|
added repolink
|
| Line | |
|---|
| 1 | #!/usr/bin/env python |
|---|
| 2 | # -*- coding: iso-8859-1 -*- |
|---|
| 3 | |
|---|
| 4 | from setuptools import setup |
|---|
| 5 | |
|---|
| 6 | setup( |
|---|
| 7 | name = 'RepoLink', |
|---|
| 8 | version = '0.1', |
|---|
| 9 | packages = ['repolink'], |
|---|
| 10 | |
|---|
| 11 | author = "Christer Weinigel", |
|---|
| 12 | author_email = "christer@weinigel.se", |
|---|
| 13 | description = "Show a link to the repository in the source browser", |
|---|
| 14 | license = "BSD", |
|---|
| 15 | keywords = "trac repolink", |
|---|
| 16 | url = "http://zoo.weinigel.se/", |
|---|
| 17 | |
|---|
| 18 | entry_points = { |
|---|
| 19 | 'trac.plugins': [ |
|---|
| 20 | 'repolink.repolink = repolink.repolink' |
|---|
| 21 | ] |
|---|
| 22 | } |
|---|
| 23 | ) |
|---|