versioning update edition
This commit is contained in:
parent
30645e46bd
commit
afa442ea8d
|
@ -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
|
||||
|
||||
|
|
4
setup.py
4
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"]},
|
||||
|
|
Loading…
Reference in New Issue