-
Notifications
You must be signed in to change notification settings - Fork 354
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
17 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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=[ | ||
|
@@ -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 | ||
|