| 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.1-toddler', |
|---|
| 9 | packages = ['codereview'], |
|---|
| 10 | package_data={ 'codereview' : ['templates/*.cs', |
|---|
| 11 | 'templates/*.html', |
|---|
| 12 | 'htdocs/images/*.*', |
|---|
| 13 | 'htdocs/js/*.js' ] }, |
|---|
| 14 | author = "Team5", |
|---|
| 15 | author_email = "UNKNOWN", |
|---|
| 16 | maintainer = "Sebastian Marek", |
|---|
| 17 | maintainer_email = "smarek@plus.net", |
|---|
| 18 | description = "Framework for realtime code review within Trac.", |
|---|
| 19 | license = "BSD", |
|---|
| 20 | keywords = "trac plugin code peer review", |
|---|
| 21 | url = "http://trac-hacks.org/wiki/PeerReviewPlugin", |
|---|
| 22 | |
|---|
| 23 | entry_points = { |
|---|
| 24 | 'trac.plugins': [ |
|---|
| 25 | 'codereview = codereview', |
|---|
| 26 | ], |
|---|
| 27 | }, |
|---|
| 28 | |
|---|
| 29 | ) |
|---|
Note: See
TracBrowser
for help on using the repository browser.