Put the DB code into a package

This commit is contained in:
Michael Hohn
2024-07-10 15:04:09 -07:00
committed by =Michael Hohn
parent 2df48b9f98
commit 3c8db9cbe4
4 changed files with 40 additions and 0 deletions

12
client/qldbtools/setup.py Normal file
View File

@@ -0,0 +1,12 @@
from setuptools import setup, find_packages
setup(
name='qldbtools',
version='0.1.0',
description='A Python package for working with CodeQL databases',
author='Michael Hohn',
author_email='hohn@github.com',
packages=find_packages(),
install_requires=[
],
)