|
Last change
on this file was
3416,
checked in by Noah Kantrowitz, 16 years ago
|
|
Change my email to avoid Yahoo, which decided to brake my scraper script recently.
|
|
File size:
708 bytes
|
| Line | |
|---|
| 1 | #!/usr/bin/env python |
|---|
| 2 | # -*- coding: iso-8859-1 -*- |
|---|
| 3 | |
|---|
| 4 | from setuptools import setup |
|---|
| 5 | |
|---|
| 6 | setup( |
|---|
| 7 | name = 'TracCodeReview', |
|---|
| 8 | version = '2.0dev', |
|---|
| 9 | packages = ['codereview'], |
|---|
| 10 | package_data={ 'codereview' : [ 'templates/*.cs', 'htdocs/images/*.*', 'htdocs/js/*.js' ] }, |
|---|
| 11 | author = "Team5", |
|---|
| 12 | author_email = "UNKNOWN", |
|---|
| 13 | maintainer = "Noah Kantrowitz", |
|---|
| 14 | maintainer_email = "noah@coderanger.net", |
|---|
| 15 | description = "Framework for realtime code review within Trac.", |
|---|
| 16 | license = "BSD", |
|---|
| 17 | keywords = "trac plugin code peer review", |
|---|
| 18 | url = "http://trac-hacks.org/wiki/PeerReviewPlugin", |
|---|
| 19 | |
|---|
| 20 | entry_points = { |
|---|
| 21 | 'trac.plugins': [ |
|---|
| 22 | 'codereview = codereview', |
|---|
| 23 | ], |
|---|
| 24 | }, |
|---|
| 25 | |
|---|
| 26 | ) |
|---|
| 27 | |
|---|
| 28 | |
|---|
Note: See
TracBrowser
for help on using the repository browser.