Browse Source

have setup.py pull version from the module to keep things in sync..

main
John-Mark Gurney 5 years ago
parent
commit
8d2ae6cb88
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      setup.py

+ 2
- 1
setup.py View File

@@ -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',


Loading…
Cancel
Save