|
a/ForgeChat/setup.py |
|
b/ForgeChat/setup.py |
|
... |
|
... |
18 |
include_package_data=True,
|
18 |
include_package_data=True,
|
19 |
zip_safe=False,
|
19 |
zip_safe=False,
|
20 |
install_requires=[
|
20 |
install_requires=[
|
21 |
# -*- Extra requirements: -*-
|
21 |
# -*- Extra requirements: -*-
|
22 |
'allura',
|
22 |
'allura',
|
23 |
'python-irclib==0.4.6',
|
|
|
24 |
],
|
23 |
],
|
25 |
entry_points="""
|
24 |
entry_points="""
|
26 |
# -*- Entry points: -*-
|
25 |
# -*- Entry points: -*-
|
27 |
[allura]
|
26 |
[allura]
|
28 |
Chat=forgechat.main:ForgeChatApp
|
27 |
Chat=forgechat.main:ForgeChatApp
|
29 |
|
28 |
|
30 |
[paste.paster_command]
|
29 |
[paste.global_paster_command]
|
31 |
ircbot=forgechat.command:IRCBotCommand
|
30 |
ircbot=forgechat.command:IRCBotCommand
|
32 |
""",
|
31 |
""",
|
33 |
)
|
32 |
)
|