Add scripts for automatic codeql db data and metadata collection

- updated instructions
- cli scripts mirror the interactive session*.py files
This commit is contained in:
Michael Hohn
2024-07-23 15:05:03 -07:00
committed by =Michael Hohn
parent aaeafa9e88
commit 731b44b187
6 changed files with 174 additions and 4 deletions

View File

@@ -1,4 +1,5 @@
from setuptools import setup, find_packages
import glob
setup(
name='qldbtools',
@@ -6,7 +7,7 @@ setup(
description='A Python package for working with CodeQL databases',
author='Michael Hohn',
author_email='hohn@github.com',
packages=find_packages(),
install_requires=[
],
packages=['qldbtools'],
install_requires=[],
scripts=glob.glob("bin/mc-*"),
)