forked from chromakode/karmabot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
62 lines (54 loc) · 1.55 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
55
56
57
58
59
60
61
62
# Copyright the Karmabot authors and contributors.
# All rights reserved. See AUTHORS.
#
# This file is part of 'karmabot' and is distributed under the BSD license.
# See LICENSE for more details.
"""
Karmabot
--------
A highly extensible IRC karma+information bot
Features include, thing storage, karma tracking
Links
`````
* `development version
<http://github.com/dcolish/karmabot/zipball/master#egg=Karmabot-dev>`_
"""
from setuptools import setup, find_packages
setup(
name="karmabot",
version="dev",
packages=find_packages(),
namespace_packages=['karmabot'],
include_package_data=True,
author="Max Goodman",
author_email="",
description="A highly extensible IRC karma+information bot",
long_description=__doc__,
zip_safe=False,
platforms='any',
license='BSD',
url='http://www.github.com/dcolish/karmabot',
classifiers=[
'Development Status :: 4 - Beta ',
'Environment :: Console',
'Framework :: Twisted',
'Intended Audience :: Developers',
'License :: OSI Approved :: ',
'Programming Language :: Python',
'Topic :: Communications :: Chat :: Internet Relay Chat',
],
entry_points={
'console_scripts': [
'karmabot=karmabot.scripts.runserver:main',
'migrate=karmabot.scripts.migrate:main',
'reinkarnate=karmabot.scripts.reinkarnate:main',
],
},
install_requires=[
'blinker',
'pyopenssl',
'twisted',
'redis',
'BeautifulSoup',
],
)