-
-
Notifications
You must be signed in to change notification settings - Fork 95
/
setup.py
34 lines (32 loc) · 1.07 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import io
from os import path
from setuptools import setup, find_packages
pwd = path.abspath(path.dirname(__file__))
with io.open(path.join(pwd, 'README.md'), encoding='utf-8') as readme:
desc = readme.read()
setup(
name='parth',
version=__import__('parth').__version__,
description='Heuristics based vulnerable parameter scanner',
long_description=desc,
long_description_content_type='text/markdown',
author='s0md3v',
license='Apache-2.0 License',
url='https://github.com/s0md3v/parth',
download_url='https://github.com/s0md3v/parth/archive/v%s.zip' % __import__(
'parth').__version__,
packages=find_packages(),
include_package_data=True,
classifiers=[
'Topic :: Security',
'Operating System :: OS Independent',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
],
entry_points={
'console_scripts': [
'parth = parth.parth:main'
]
},
keywords=['hacking', 'vulnerability', 'security', 'scanning', 'pentesting']
)