1
0
Fork 0
mirror of synced 2025-07-04 20:46:49 +02:00

tweak setup.py to work with multiple top-level files. silence lots of warnings.

This commit is contained in:
Tom Pusateri 2023-02-13 16:08:59 -05:00
parent 4e8326ea6c
commit a0a780abeb
5 changed files with 284 additions and 289 deletions

View file

@ -15,7 +15,7 @@
# -> E-Mail: luis.mgarc@gmail.com #
# -> WWWW: http://www.luismg.com #
# -> GitHub: https://github.com/luismartingarcia #
# # #
# #
################################################################################
# #
# This file is part of Protocol. #
@ -52,18 +52,17 @@
################################################################################
# Application name
APPLICATION_NAME="Protocol"
APPLICATION_NAME = "Protocol"
# Current version
APPLICATION_VERSION="0.1.0"
APPLICATION_VERSION = "0.1.0"
# Author
APPLICATION_AUTHOR="Luis MartinGarcia"
APPLICATION_AUTHOR = "Luis MartinGarcia"
# Author E-mail
APPLICATION_AUTHOR_EMAIL="luis.mgarc@gmail.com"
APPLICATION_AUTHOR_EMAIL = "luis.mgarc@gmail.com"
# Operation return codes
OP_SUCCESS = 0 # Function performed operation successfully
OP_SUCCESS = 0 # Function performed operation successfully
OP_FAILURE = -1 # Error encountered while performing operation