-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
21 lines (20 loc) · 876 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import os
from setuptools import setup, find_packages
print "Executing setup!!"
setup(
name = 'massweb',
version = '0.3.0',
description = 'Fast Web Fuzzing and Scanning',
long_description = 'Hyperion Gray\'s fast scanning and fuzzing module. Used in PunkSPIDER 3.0.',
url = 'https://bitbucket.org/acaceres/massweb',
license = 'Apache 2.0',
author = 'Alejandro Caceres, Chris Koepke',
author_email = '[email protected], [email protected]',
packages = find_packages(),
include_package_data = True,
install_requires = ['requests', 'beautifulsoup4', 'html5lib', 'alabaster', 'sphinxcontrib-napoleon'],
classifiers = [ "Development Status :: 4 - Beta",
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python']
)