17 lines
431 B
Python
17 lines
431 B
Python
|
|
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",
|
||
|
|
],
|
||
|
|
},
|
||
|
|
)
|