tweak setup.py to work with multiple top-level files. silence lots of warnings.
This commit is contained in:
parent
4e8326ea6c
commit
a0a780abeb
5 changed files with 284 additions and 289 deletions
13
constants.py
13
constants.py
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue