versioning update edition

This commit is contained in:
Steve Nyemba 2025-02-19 23:07:47 -06:00
parent 30645e46bd
commit afa442ea8d
2 changed files with 4 additions and 3 deletions

View File

@ -1,7 +1,8 @@
__app_name__ = 'data-transport' __app_name__ = 'data-transport'
__author__ = 'The Phi Technology' __author__ = 'The Phi Technology'
__version__= '2.2.6' __version__= '2.2.8'
__email__ = "info@the-phi.com" __email__ = "info@the-phi.com"
__edition__= 'ce'
__license__=f""" __license__=f"""
Copyright 2010 - 2024, Steve L. Nyemba Copyright 2010 - 2024, Steve L. Nyemba

View File

@ -5,14 +5,14 @@ from setuptools import setup, find_packages
import os import os
import sys import sys
# from version import __version__,__author__ # from version import __version__,__author__
from info import __version__, __author__,__app_name__,__license__ from info import __version__, __author__,__app_name__,__license__,__edition___
def read(fname): def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read() return open(os.path.join(os.path.dirname(__file__), fname)).read()
args = { args = {
"name":__app_name__, "name":__app_name__,
"version":__version__, "version":'-'.join([__version__,__edition__]),
"author":__author__,"author_email":"info@the-phi.com", "author":__author__,"author_email":"info@the-phi.com",
"license":__license__, "license":__license__,
# "packages":["transport","info","transport/sql"]}, # "packages":["transport","info","transport/sql"]},