-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
54 lines (48 loc) · 1.6 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# -*- coding: utf-8 -*-
__version__ = '2.0.0'
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from setuptools import find_packages
_PACKAGES = find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"])
with open('README.md') as f:
readme = f.read()
setup(
name="prospector2html",
version=__version__,
author="amDei the Botan",
author_email="[email protected]",
maintainer="Andrey Kulikov",
maintainer_email="[email protected]",
license="MIT",
url="https://github.com/amdei/prospector-html",
description="HTML report generator for prospector, semgrep, and GitLab SAST static analyzer tools.",
keywords='prospector semgrep gitlab SAST static code analysis report pylint pyflakes pep8 mccabe frosted',
long_description=readme,
long_description_content_type="text/markdown",
platforms=["any"],
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Environment :: Console',
'Development Status :: 4 - Beta',
'Operating System :: Unix',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
'Topic :: Software Development :: Quality Assurance'
],
packages=_PACKAGES,
entry_points={
'console_scripts': [
'prospector-html = prospector2html.__main__:main',
],
},
install_requires=[
'PyYAML',
'json2html'
]
)