-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·32 lines (30 loc) · 932 Bytes
/
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
#!/usr/bin/env python
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name = "kibot",
version = "0.0.13",
author = "Peter Teichman",
author_email = "[email protected]",
url = "http://wiki.github.com/pteichman/kibot/",
description = "A simple IRC bot extensible with plugins.",
packages = find_packages(),
namespace_packages = ["kibot", "kibot.modules"],
classifiers = [
],
entry_points = {
"console_scripts" : [
"kibot = kibot.scripts:kibot",
"kibot-control = kibot.scripts:kibot_control"
],
"kibot.modules" : [
"auth = kibot.modules.auth",
"base = kibot.modules.base",
"irc = kibot.modules.irc",
"log = kibot.modules.log",
"messaging = kibot.modules.messaging",
"rand = kibot.modules.rand"
]
}
)