Files
mrvacommander/client/qldbtools/setup.py
2024-07-10 15:04:09 -07:00

13 lines
290 B
Python

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=[
],
)