|
Last change
on this file since 18 was
17,
checked in by retracile, 16 years ago
|
|
Mergebot: redesigned implementation. Still has rough edges.
|
|
File size:
797 bytes
|
| Rev | Line | |
|---|
| [16] | 1 | #!/usr/bin/env python |
|---|
| 2 | |
|---|
| 3 | from setuptools import setup |
|---|
| 4 | |
|---|
| 5 | setup( |
|---|
| 6 | name = "TracMergeBot", |
|---|
| [17] | 7 | version = "0.11", |
|---|
| [16] | 8 | author = "Eli Carter", |
|---|
| [17] | 9 | author_email = "eli.carter@retracile.net", |
|---|
| 10 | url = "https://retracile.net", |
|---|
| [16] | 11 | description = "Branch and merge management plugin", |
|---|
| 12 | license = """MIT""", |
|---|
| 13 | zip_safe=False, |
|---|
| 14 | packages=["mergebot"], |
|---|
| [17] | 15 | package_data={"mergebot": ["templates/*.html"]}, |
|---|
| [16] | 16 | |
|---|
| 17 | install_requires = [], |
|---|
| 18 | |
|---|
| 19 | entry_points = { |
|---|
| [17] | 20 | "console_scripts": [ |
|---|
| 21 | "mergebotdaemon = mergebot.mergebotdaemon:run", |
|---|
| 22 | ], |
|---|
| [16] | 23 | "trac.plugins": [ |
|---|
| [17] | 24 | "mergebot.web_ui = mergebot.web_ui", |
|---|
| 25 | "mergebot.ticket_actions = mergebot.ticket_actions" |
|---|
| [16] | 26 | ] |
|---|
| 27 | }, |
|---|
| 28 | ) |
|---|
| 29 | # vim:foldmethod=indent foldcolumn=8 |
|---|
| 30 | # vim:softtabstop=4 shiftwidth=4 tabstop=4 expandtab |
|---|
Note: See
TracBrowser
for help on using the repository browser.