|
Last change
on this file since 16 was
16,
checked in by retracile, 16 years ago
|
|
Mergebot: Codebase as released with permission from CommProve?, plus cleanups to remove traces of that environment.
|
|
File size:
632 bytes
|
| Rev | Line | |
|---|
| [16] | 1 | #!/usr/bin/env python |
|---|
| 2 | |
|---|
| 3 | from setuptools import setup |
|---|
| 4 | |
|---|
| 5 | setup( |
|---|
| 6 | name = "TracMergeBot", |
|---|
| 7 | version = "0.9", |
|---|
| 8 | author = "Eli Carter", |
|---|
| 9 | author_email = "eli.carter@commprove.com", |
|---|
| 10 | url = "http://www.commprove.com", |
|---|
| 11 | description = "Branch and merge management plugin", |
|---|
| 12 | license = """MIT""", |
|---|
| 13 | zip_safe=False, |
|---|
| 14 | packages=["mergebot"], |
|---|
| 15 | package_data={"mergebot": ["templates/*.cs"]}, |
|---|
| 16 | |
|---|
| 17 | install_requires = [], |
|---|
| 18 | |
|---|
| 19 | entry_points = { |
|---|
| 20 | "trac.plugins": [ |
|---|
| 21 | "mergebot.web_ui = mergebot.web_ui" |
|---|
| 22 | ] |
|---|
| 23 | }, |
|---|
| 24 | ) |
|---|
| 25 | # vim:foldmethod=indent foldcolumn=8 |
|---|
| 26 | # vim:softtabstop=4 shiftwidth=4 tabstop=4 expandtab |
|---|
Note: See
TracBrowser
for help on using the repository browser.