diff --git a/drivers/python_raw/setup.py b/drivers/python_raw/setup.py new file mode 100644 index 000000000..57b065ce7 --- /dev/null +++ b/drivers/python_raw/setup.py @@ -0,0 +1,23 @@ +from setuptools import setup + +setup( + name="wappalyzer", + version="0.0.1", + description="Python package for python_raw driver in Wappalyzer bundle", + author="smant", + author_email="TBA", + url="https://github.com/chorsley/Wappalyzer/tree/master/drivers/python_raw", + classifiers=[ + 'Development Status :: 3 - Alpha', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', + 'Programming Language :: Python :: 2.7', + 'Topic :: Internet :: WWW/HTTP', + ], + py_modules=['wappalyzer'], + install_requires=[ + ], + test_suite='nose.collector', + tests_require=[ + ] +)