diff --git a/info/__init__.py b/info/__init__.py index 3eded86..bbdf8fd 100644 --- a/info/__init__.py +++ b/info/__init__.py @@ -1,7 +1,8 @@ __app_name__ = 'data-transport' __author__ = 'The Phi Technology' -__version__= '2.2.6' +__version__= '2.2.8' __email__ = "info@the-phi.com" +__edition__= 'ce' __license__=f""" Copyright 2010 - 2024, Steve L. Nyemba diff --git a/setup.py b/setup.py index f11a6ca..e8d2de0 100644 --- a/setup.py +++ b/setup.py @@ -5,14 +5,14 @@ from setuptools import setup, find_packages import os import sys # 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): return open(os.path.join(os.path.dirname(__file__), fname)).read() args = { "name":__app_name__, - "version":__version__, + "version":'-'.join([__version__,__edition__]), "author":__author__,"author_email":"info@the-phi.com", "license":__license__, # "packages":["transport","info","transport/sql"]},