Initial commit.
This commit is contained in:
commit
347d3a969d
7 changed files with 350 additions and 0 deletions
16
setup.py
Normal file
16
setup.py
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
from setuptools import setup, find_packages
|
||||
|
||||
|
||||
setup(
|
||||
name="query_performance_gauge",
|
||||
packages=find_packages(),
|
||||
description="Measure how long queries take.",
|
||||
long_description=open("README.md").read(),
|
||||
long_description_content_type="text/markdown",
|
||||
python_requires=">=3.7",
|
||||
entry_points={
|
||||
"console_scripts": [
|
||||
"measure_query_performance = cli:measure_performance",
|
||||
],
|
||||
},
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue