Skip to content

Commit 5fa02ad

Browse files
committed
Release 0.2.0
1 parent cb326af commit 5fa02ad

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed

pyautocv/__init__.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,12 @@
66
"""
77

88
# Credit to https://stackoverflow.com/questions/16981921/relative-imports-in-python-3
9-
10-
119
import os
1210
import sys
1311
sys.path.append(os.path.dirname(os.path.realpath(__file__)))
14-
from version import __version__
15-
__author__ = "Nelson Gonzabato"
16-
__version__ = __version__
17-
__all__ = ["segmentation"]
12+
__author__="Nelson Gonzabato"
13+
__version__="0.2.0".encode("ascii","ignore").decode('ascii')
14+
__all__=["segmentation"]
1815

1916

2017

pyautocv/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.0
1+
__version__ = "0.2.0".encode("ascii","ignore").decode('ascii')

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
from setuptools import setup, find_packages
2-
32
setup(name='pyautocv',
4-
version=open("pyautocv/version.py").read().rstrip(),
3+
version="0.2.0".encode("ascii","ignore").decode('ascii'),
54
description='(Semi) Automated Image Processing',
65
url='http://www.github.com/Nelson-Gon/pyautocv',
76
author='Nelson Gonzabato',

0 commit comments

Comments
 (0)