This commit is contained in:
yumoqing 2022-06-22 16:31:56 +08:00
parent ad6448c62c
commit 96d673d750
2 changed files with 7 additions and 2 deletions

1
ahserver/version.py Normal file
View File

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

View File

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