mirror of
https://github.com/hohn/sarif-cli.git
synced 2025-12-16 17:23:03 +01:00
pre-alpha versions of bin/sarif-{digest,labeled,list-files,results-summary
This commit is contained in:
committed by
=Michael Hohn
parent
d180a079b0
commit
3032fe3fcd
17
setup.py
Normal file
17
setup.py
Normal 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'
|
||||
)
|
||||
Reference in New Issue
Block a user