summaryrefslogtreecommitdiffstats
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
commit0d123c383b08596f68a6e5102cbb17a3e1e6dad5 (patch)
tree1b2c12d3a5f26811342086b7ef0efea9fb635229
parentf2dd476172dedcc788332cbceb853cc0615ba6ff (diff)
Reaktor: add setup.py
-rw-r--r--Reaktor/setup.py42
1 files changed, 42 insertions, 0 deletions
diff --git a/Reaktor/setup.py b/Reaktor/setup.py
new file mode 100644
index 00000000..ab26428a
--- /dev/null
+++ b/Reaktor/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",
+ ],
+)
+