aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2015-08-28 11:06:23 +0200
committermakefu <github@syntax-fehler.de>2015-08-28 11:06:23 +0200
commitc3cf7c6cc09c85998f2e18540483e8165859bdb1 (patch)
tree0249121e1d4a2b6faa12fe5d427a1f7dd760f636
parent8a8abdde5b9b834fb4f51fcfb44df239e572b8af (diff)
Reaktor: add setup.py
-rw-r--r--setup.py42
1 files changed, 42 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..ab26428
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,42 @@
+import sys
+from setuptools import setup
+
+setup(
+ name='Reaktor',
+ version='0.2.3',
+
+ description='an IRC bot based on asyn* libs',
+ long_description=open("README.md").read(),
+ license='WTFPL',
+ url='http://localhost/',
+ download_url='http://localhost/',
+
+ author='krebs',
+ author_email='spam@krebsco.de',
+
+ packages=['reaktor'],
+ # optional non-python Deps:
+ # whatweb in path for 'whatweb'
+ # dnsrecon.py for 'dns
+ # host for 'taken'
+ # whois for 'whois'
+ # git for 'nag'
+ entry_points={
+ 'console_scripts' : [
+ 'reaktor = reaktor.core:main'
+ ]
+ },
+
+ install_requires= [ ],
+ classifiers=[
+ "Intended Audience :: Developers",
+ "Natural Language :: English",
+ "Operating System :: POSIX :: Linux",
+ "Programming Language :: Python",
+ "Programming Language :: Python :: 2.7",
+ "Programming Language :: Python :: 3",
+ "Programming Language :: Python :: 3.4",
+ "Programming Language :: Python :: Implementation :: CPython",
+ ],
+)
+