set version to 0.8.10; add eventlet.__version__ attribute

This commit is contained in:
Denis Bilenko
2009-04-13 20:10:48 +07:00
parent 3a8af665af
commit aecd3d9679
2 changed files with 4 additions and 3 deletions

View File

@@ -20,5 +20,5 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE. THE SOFTWARE.
""" """
# This text exists only for the purpose of not making a complete version_info = (0, 8, 10)
# mockery of the above copyright header. __version__ = '%s.%s.%s' % version_info

View File

@@ -2,11 +2,12 @@
from setuptools import find_packages, setup from setuptools import find_packages, setup
from eventlet import __version__
setup( setup(
name='eventlet', name='eventlet',
version='0.8.9', version=__version__,
description='Coroutine-based networking library', description='Coroutine-based networking library',
author='Linden Lab', author='Linden Lab',
author_email='eventletdev@lists.secondlife.com', author_email='eventletdev@lists.secondlife.com',