From 93900eba18f61119a5ec454b609158df97130ee9 Mon Sep 17 00:00:00 2001 From: Sebastian Wagner Date: Sun, 4 Mar 2018 20:59:17 +0100 Subject: [PATCH] Add setup.py --- setup.py | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..b0f8b9d --- /dev/null +++ b/setup.py @@ -0,0 +1,35 @@ +from setuptools import setup, find_packages + +setup( + name='Sublist3r', + version='1.0', + python_requires='>=2.7', + install_requires=['dnspython', 'requests', 'argparse'], + packages=find_packages(), + url='https://github.com/aboul3la/Sublist3r', + license='GPL-2.0', + description='Subdomains enumeration tool for penetration testers', + classifiers=[ + 'Development Status :: 5 - Production/Stable', + 'Environment :: Console', + 'Intended Audience :: Information Technology', + 'Intended Audience :: System Administrators', + 'Intended Audience :: Telecommunications Industry', + 'License :: OSI Approved :: GNU General Public License v2', + 'Operating System :: POSIX :: Linux', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Topic :: Security', + ], + keywords='subdomain dns detection', + entry_points={ + 'console_scripts': [ + 'sublist3r = sublist3r:main', + ], + }, +)