mirror of
https://github.com/hohn/sarif-cli.git
synced 2025-12-15 17:03:04 +01:00
18 lines
482 B
Python
18 lines
482 B
Python
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'
|
|
)
|