pre-alpha versions of bin/sarif-{digest,labeled,list-files,results-summary

This commit is contained in:
Michael Hohn
2021-11-09 12:20:28 -08:00
committed by =Michael Hohn
parent d180a079b0
commit 3032fe3fcd
14 changed files with 301 additions and 0 deletions

17
setup.py Normal file
View File

@@ -0,0 +1,17 @@
from setuptools import setup
import glob
setup(name='sarif_cli',
version='0.1',
description='Collection of command line tools for sarif files',
url='https://github.com/hohn/sarif-cli',
author='Michael Hohn',
author_email='hohn@github.com',
license='MIT',
packages=['sarif_cli'],
install_requires=[],
include_package_data=True,
scripts=glob.glob("bin/sarif-*"),
zip_safe=False,
python_requires='>=3.7'
)