-
Notifications
You must be signed in to change notification settings - Fork 41
/
setup.py
54 lines (51 loc) · 2.27 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python2
from setuptools import setup, find_packages
requires = open('requirements.txt').read().split('\n')
setup(
name='hamper',
version='1.12.0',
description='Yet another IRC bot',
install_requires=requires,
author='Mike Cooper',
author_email='[email protected]',
url='https://www.github.com/hamperbot/hamper',
packages=find_packages(),
entry_points={
'console_scripts': [
'hamper = hamper.commander:main',
],
'hamperbot.plugins': [
'bitly = hamper.plugins.bitly:Bitly',
'botsnack = hamper.plugins.friendly:BotSnack',
'channel_utils = hamper.plugins.channel_utils:ChannelUtils',
'choices = hamper.plugins.questions:ChoicesPlugin',
'dice = hamper.plugins.commands:Dice',
'selfaware = hamper.plugins.selfaware:SelfAwarePlugin',
'factoids = hamper.plugins.factoids:Factoids',
'flip = hamper.plugins.flip:Flip',
'foods = hamper.plugins.foods:FoodsPlugin',
'friendly = hamper.plugins.friendly:Friendly',
'goodbye = hamper.plugins.goodbye:GoodBye',
'help = hamper.plugins.help:Help',
'karma = hamper.plugins.karma:Karma',
'karma_adv = hamper.plugins.karma_adv:KarmAdv',
'lmgtfy = hamper.plugins.commands:LetMeGoogleThatForYou',
'lookup = hamper.plugins.dictionary:Lookup',
'maniacal = hamper.plugins.maniacal:ManiacalPlugin',
'platitudes = hamper.plugins.platitudes:PlatitudesPlugin',
'ponies = hamper.plugins.friendly:OmgPonies',
'quit = hamper.plugins.commands:Quit',
'quotes = hamper.plugins.quotes:Quotes',
'remindme = hamper.plugins.remindme:Reminder',
'rot13 = hamper.plugins.commands:Rot13',
'roulette = hamper.plugins.roulette:Roulette',
'sed = hamper.plugins.commands:Sed',
'seen = hamper.plugins.seen:Seen',
'suggest = hamper.plugins.suggest:Suggest',
'timez = hamper.plugins.timez:Timez',
'tinyurl = hamper.plugins.tinyurl:Tinyurl',
'whatwasthat = hamper.plugins.whatwasthat:WhatWasThat',
'yesno = hamper.plugins.questions:YesNoPlugin',
],
},
)