Last change
on this file since 22 was
17,
checked in by retracile, 15 years ago
|
Mergebot: redesigned implementation. Still has rough edges.
|
File size:
797 bytes
|
Line | |
---|
1 | #!/usr/bin/env python |
---|
2 | |
---|
3 | from setuptools import setup |
---|
4 | |
---|
5 | setup( |
---|
6 | name = "TracMergeBot", |
---|
7 | version = "0.11", |
---|
8 | author = "Eli Carter", |
---|
9 | author_email = "eli.carter@retracile.net", |
---|
10 | url = "https://retracile.net", |
---|
11 | description = "Branch and merge management plugin", |
---|
12 | license = """MIT""", |
---|
13 | zip_safe=False, |
---|
14 | packages=["mergebot"], |
---|
15 | package_data={"mergebot": ["templates/*.html"]}, |
---|
16 | |
---|
17 | install_requires = [], |
---|
18 | |
---|
19 | entry_points = { |
---|
20 | "console_scripts": [ |
---|
21 | "mergebotdaemon = mergebot.mergebotdaemon:run", |
---|
22 | ], |
---|
23 | "trac.plugins": [ |
---|
24 | "mergebot.web_ui = mergebot.web_ui", |
---|
25 | "mergebot.ticket_actions = mergebot.ticket_actions" |
---|
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.