forked from hgrecco/SleekBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (32 loc) · 1.18 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
#!/usr/bin/env python
import sys
from distutils.core import setup
setup(
name = "sleekbot",
packages = ["sleekbot", "sleekbot/plugins"],
package_data = {"sleekbot": ['config_template.xml']},
version = "0.4",
description = "SleekBot - an extendable XMPP/Jabber Bot based on SleekXMPP",
author = "Hernan E. Grecco",
author_email = "[email protected]",
url = "http://github.com/hgrecco/SleekBot",
download_url = "http://github.com/hgrecco/SleekBot/tarball/master",
keywords = ["xmpp", "bot", "jabber"],
classifiers = [
"Programming Language :: Python",
"Environment :: Other Environment",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Linguistic",
"Topic :: Communications :: Chat"
],
requires = [ 'sleekxmpp'],
scripts = [ 'scripts/runbot.py' ],
long_description = """\
SleekBot
-------------------------------------
SleekBot is an easily extendable Bot for XMPP (aka Jabber, Google Talk, etc)
written in Python using the SleekXMPP library.
"""
)