Skip to content

Commit

Permalink
update version to v1.7.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Neutree committed Jun 27, 2019
1 parent bd1c3ff commit c7b3cec
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 9 deletions.
6 changes: 3 additions & 3 deletions COMTool/helpAbout.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

versionMajor = 1
versionMinor = 7
versionDev = 8
date = "2018.12.07"
versionDev = 9
date = "2019.06.27"

def strAbout():
pathDirList = sys.argv[0].replace("\\", "/").split("/")
Expand All @@ -31,4 +31,4 @@ def strAbout():
<b style="color:red;"><kbd>Ctrl+L</kbd></b>: Clear Send Area<br>
<b style="color:red;"><kbd>Ctrl+K</kbd></b>: Clear Receive Area<br>
'''
'''
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@
# 3. If at all possible, it is good practice to do this. If you cannot, you
# will need to generate wheels for each Python version that you support.
# universal=0
[metadata]
license_file=LICENSE

17 changes: 11 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,21 @@
# https://packaging.python.org/en/latest/single_source_version.html
version=str(helpAbout.versionMajor)+"."+str(helpAbout.versionMinor)+"."+str(helpAbout.versionDev),

description='Cross platform serial debug assistant',
# Author details
author='Neucrack',
author_email='[email protected]',

description='Cross platform serial debug assistant with GUI',
long_description=long_description,
long_description_content_type="text/markdown",

# The project's main homepage.
url='https://github.com/Neutree/COMTool',

# Author details
author='Neucrack',
author_email='[email protected]',


# Choose your license
license='LGPL-3.0',
license='MIT',

# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
Expand Down Expand Up @@ -118,7 +121,9 @@
'COMToolData/assets/help-white.png',
'COMToolData/assets/skin.png',
'COMToolData/assets/skin-white.png',]),
(parameters.strDataAssetsDirName+"/qss",["COMToolData/assets/qss/style.qss","COMToolData/assets/qss/style-dark.qss"])
(parameters.strDataAssetsDirName+"/qss",["COMToolData/assets/qss/style.qss","COMToolData/assets/qss/style-dark.qss"]),
("",["LICENSE","README.MD"])

],

# To provide executable scripts, use entry points in preference to the
Expand Down

0 comments on commit c7b3cec

Please sign in to comment.