From 8d2ae6cb883520a5c8bae8e0e7767d4129df4338 Mon Sep 17 00:00:00 2001 From: John-Mark Gurney Date: Fri, 1 Nov 2019 16:17:25 -0700 Subject: [PATCH] have setup.py pull version from the module to keep things in sync.. --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 378a4e5..ae12c5d 100644 --- a/setup.py +++ b/setup.py @@ -1,12 +1,13 @@ #!/usr/bin/env python from setuptools import setup +from ntunnel import __version__ # Install requirements for git: # https://stackoverflow.com/questions/18026980/python-setuptools-how-can-i-list-a-private-repository-under-install-requires setup(name='ntunnel', - version='0.1.0', + version=__version__, description='A socket tunning tool using the Noise Protocol', author='John-Mark Gurney', author_email='jmg@funkthat.com',