Change version to v1.3.0
This commit is contained in:
parent
b365c103ba
commit
fffc99047b
@ -2,6 +2,13 @@
|
||||
History
|
||||
=======
|
||||
|
||||
1.3.0 (2017-04-22)
|
||||
------------------
|
||||
|
||||
* Fix issues
|
||||
* Add difficult tag
|
||||
* Create new files for pypi
|
||||
|
||||
1.2.3 (2017-04-22)
|
||||
------------------
|
||||
|
||||
|
||||
@ -1,6 +1,5 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf8 -*-
|
||||
import _init_path
|
||||
import codecs
|
||||
import os.path
|
||||
import re
|
||||
@ -27,7 +26,9 @@ except ImportError:
|
||||
|
||||
import resources
|
||||
# Add internal libs
|
||||
sys.path.insert(0, 'libs')
|
||||
dir_name = os.path.abspath(os.path.dirname(__file__))
|
||||
libs_path = os.path.join(dir_name, 'libs')
|
||||
sys.path.insert(0, libs_path)
|
||||
from lib import struct, newAction, newIcon, addActions, fmtShortcut
|
||||
from shape import Shape, DEFAULT_LINE_COLOR, DEFAULT_FILL_COLOR
|
||||
from canvas import Canvas
|
||||
|
||||
0
libs/__init__.py
Normal file
0
libs/__init__.py
Normal file
@ -1,5 +1,5 @@
|
||||
[bumpversion]
|
||||
current_version = 1.2.4
|
||||
current_version = 1.3.0
|
||||
commit = True
|
||||
tag = True
|
||||
|
||||
|
||||
7
setup.py
7
setup.py
@ -21,17 +21,16 @@ test_requirements = [
|
||||
|
||||
setup(
|
||||
name='labelImg',
|
||||
version='1.2.4',
|
||||
version='1.3.0',
|
||||
description="LabelImg is a graphical image annotation tool and label object bounding boxes in images",
|
||||
long_description=readme + '\n\n' + history,
|
||||
author="TzuTa Lin",
|
||||
author_email='tzu.ta.lin@gmail.com',
|
||||
url='https://github.com/tzutalin/labelImg',
|
||||
packages=[
|
||||
'labelImg',
|
||||
'labelImg', 'labelImg.libs'
|
||||
],
|
||||
package_dir={'labelImg':
|
||||
'.'},
|
||||
package_dir={'labelImg': '.'},
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'labelImg=labelImg.labelImg:main'
|
||||
|
||||
@ -1,7 +1,11 @@
|
||||
import _init_path
|
||||
|
||||
from unittest import TestCase
|
||||
|
||||
import sys
|
||||
import os
|
||||
dir_name = os.path.abspath(os.path.dirname(__file__))
|
||||
libs_path = os.path.join(dir_name, '..', 'libs')
|
||||
sys.path.insert(0, libs_path)
|
||||
from pascal_voc_io import PascalVocWriter
|
||||
from pascal_voc_io import PascalVocReader
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user