Skip to content

Commit

Permalink
Reaktor: cleanup, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
makefu committed Aug 31, 2015
1 parent f7607f1 commit e9e7d6b
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 deletions.
1 change: 0 additions & 1 deletion Reaktor/public_commands/caps

This file was deleted.

1 change: 0 additions & 1 deletion Reaktor/public_commands/hello

This file was deleted.

1 change: 0 additions & 1 deletion Reaktor/public_commands/reload

This file was deleted.

1 change: 0 additions & 1 deletion Reaktor/public_commands/retard

This file was deleted.

1 change: 0 additions & 1 deletion Reaktor/public_commands/rev

This file was deleted.

1 change: 0 additions & 1 deletion Reaktor/public_commands/uptime

This file was deleted.

2 changes: 1 addition & 1 deletion Reaktor/reaktor/commands/caps
@@ -1,4 +1,4 @@
#! /usr/bin/env python3
#! /usr/bin/env python
import imp
import os

Expand Down
2 changes: 1 addition & 1 deletion Reaktor/reaktor/commands/licht_resolver
@@ -1,4 +1,4 @@
#! /usr/bin/python
#! /usr/bin/env python
# -*- coding: utf-8 -*-

map = {
Expand Down
3 changes: 2 additions & 1 deletion Reaktor/reaktor/config.py
Expand Up @@ -102,7 +102,8 @@ def simple_command(cap, cmd=None, env=None):
default_command('tell', cmd='tell-on_privmsg', env={
'state_file': workdir + '/tell.txt'
}),
default_command('nag', env=nag_env),
# TODO this is disabled until someone fixes it
#default_command('nag', env=nag_env),
simple_command('identify', env={
'config_filename': config_filename
}),
Expand Down
12 changes: 9 additions & 3 deletions Reaktor/setup.py
Expand Up @@ -3,24 +3,29 @@

setup(
name='Reaktor',
version='0.2.3',
version='0.3.2',

description='an IRC bot based on asyn* libs',
long_description=open("README.md").read(),
license='WTFPL',
url='http://localhost/',
download_url='http://localhost/',
url='http://krebsco.de/',
download_url='https://pypi.python.org/pypi/Reaktor/',

author='krebs',
author_email='spam@krebsco.de',
install_requires = [ 'docopt' ],
extras_require = {
# 'all-plugins' : ['dnsrecon'] < not yet in pypi
},

packages=['reaktor'],
# optional non-python Deps:
# whatweb in path for 'whatweb'
# dnsrecon.py for 'dns
# host for 'taken'
# whois for 'whois'
# git for 'nag'
package_data = {'reaktor' : ['commands/*'] },
entry_points={
'console_scripts' : [
'reaktor = reaktor.core:main'
Expand All @@ -31,6 +36,7 @@
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
Expand Down
1 change: 0 additions & 1 deletion Reaktor/udp_commands/licht_resolver

This file was deleted.

0 comments on commit e9e7d6b

Please sign in to comment.