We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75c41ff commit c8c3ff9Copy full SHA for c8c3ff9
setup.py
@@ -1,11 +1,12 @@
1
import os
2
from distutils.core import setup
3
+from snap7 import __version__
4
5
def read(fname):
6
return open(os.path.join(os.path.dirname(__file__), fname)).read()
7
8
setup(name='python-snap7',
- version='0.2.1',
9
+ version=__version__,
10
description='Python wrapper for the snap7 library',
11
author='Gijs Molenaar',
12
author_email='[email protected]',
snap7/__init__.py
@@ -8,4 +8,4 @@
import snap7.common as common
import snap7.util as util
-__version__ = '0.2.1'
+__version__ = '0.2.2'
0 commit comments