-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (33 loc) · 1.11 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
35
36
37
38
39
"""This module is the setup for OWASP ZAP Historic Parser"""
from setuptools import find_packages, setup
import version
with open("README.md", "r") as fh:
LONG_DESCRIPTION = fh.read()
print(LONG_DESCRIPTION)
with open('requirements.txt') as f:
REQUIREMENTS = f.read().splitlines()
setup(
name='owasp-zap-historic-parser',
version=version.VERSION,
description='Parser to push OWASP ZAP report data to MySQL and generate delta report',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
classifiers=[
'Programming Language :: Python',
'Topic :: Software Development :: Testing',
],
keywords='owasp zap historical report parser',
author='Neil Howell',
author_email='[email protected]',
url='https://github.com/Accruent/owasp-zap-historic-parser',
license='GPL-3.0',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=REQUIREMENTS,
entry_points={
'console_scripts': [
'owaspzaphistoricparser=owasp_zap_historic_parser.runner:main',
]
},
)