This commit is contained in:
yumoqing 2022-06-22 16:14:41 +08:00
parent 9ecc577202
commit 999b2a3f73
2 changed files with 7 additions and 6 deletions

View File

@ -2,14 +2,14 @@
from distutils.core import setup
from setuptools import setup, find_packages
try:
from setuptools import setup, find_packages
except:
from distutils.core import setup
# usage:
# python setup.py bdist_wininst generate a window executable file
# python setup.py bdist_egg generate a egg file
# Release information about eway
from sqlor.version import __version__
version = "0.0.2"
version = __version__
name = "sqlor"
description = "sqlor"
author = "yumoqing"

1
sqlor/version.py Normal file
View File

@ -0,0 +1 @@
__version__ = '0.0.5'