aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
blob: e96568faecdebf097c0a801302b1d9c7c21053ac (plain)
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
import sys
from setuptools import setup
import reaktor

setup(
    name='Reaktor',
    version=reaktor.__version__,

    description='an IRC bot based on asyn* libs',
    long_description=open("README.md").read(),
    license='WTFPL',
    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'
            ]
        },

    classifiers=[
        "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",
        "Programming Language :: Python :: 3.4",
        "Programming Language :: Python :: Implementation :: CPython",
    ],
)