forked from we45/RoboZap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 781 Bytes
/
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
from setuptools import setup
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='RoboZap',
version='1.3.1',
packages=[''],
package_dir={'': 'robozap'},
url='https://www.github.com/we45/RoboZap',
license='MIT',
author='we45',
author_email='[email protected]',
description='Robot Framework Library for the OWASP ZAP Application Vulnerability Scanner' ,
install_requires=[
'requests==2.18.4',
'python-owasp-zap-v2.4==0.0.14',
'robotframework==3.0.4',
'boto3==1.17.49'
],
long_description = long_description,
long_description_content_type='text/markdown'
)