Version number is now fed into setup.py.
This commit is contained in:
parent
51cd187cd2
commit
595ddd2270
2 changed files with 5 additions and 2 deletions
6
setup.py
6
setup.py
|
|
@ -1,11 +1,13 @@
|
|||
from setuptools import setup, find_packages
|
||||
|
||||
from _version import __version__
|
||||
|
||||
with open('requirements.txt', encoding="utf-16") as f:
|
||||
|
||||
with open("requirements.txt", encoding="utf-16") as f:
|
||||
required = f.read().splitlines()
|
||||
|
||||
setup(
|
||||
version="0.1.0",
|
||||
version=__version__,
|
||||
name="query_performance_gauge",
|
||||
packages=find_packages(),
|
||||
description="Measure how long queries take.",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue