Skip to content

Commit

Permalink
Release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Nelson-Gon committed May 27, 2020
1 parent cb326af commit 5fa02ad
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
9 changes: 3 additions & 6 deletions pyautocv/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,12 @@
"""

# Credit to https://stackoverflow.com/questions/16981921/relative-imports-in-python-3


import os
import sys
sys.path.append(os.path.dirname(os.path.realpath(__file__)))
from version import __version__
__author__ = "Nelson Gonzabato"
__version__ = __version__
__all__ = ["segmentation"]
__author__="Nelson Gonzabato"
__version__="0.2.0".encode("ascii","ignore").decode('ascii')
__all__=["segmentation"]



Expand Down
2 changes: 1 addition & 1 deletion pyautocv/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.0
__version__ = "0.2.0".encode("ascii","ignore").decode('ascii')
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from setuptools import setup, find_packages

setup(name='pyautocv',
version=open("pyautocv/version.py").read().rstrip(),
version="0.2.0".encode("ascii","ignore").decode('ascii'),
description='(Semi) Automated Image Processing',
url='http://www.github.com/Nelson-Gon/pyautocv',
author='Nelson Gonzabato',
Expand Down

0 comments on commit 5fa02ad

Please sign in to comment.