From 36e920322208633385801b5a8e727552c5ac70ae Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Mon, 18 Jan 2016 09:50:20 +0000 Subject: [PATCH] fix __version__ not being at the top --- steam/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/steam/__init__.py b/steam/__init__.py index 1b542f2..ca3e650 100644 --- a/steam/__init__.py +++ b/steam/__init__.py @@ -1,7 +1,8 @@ -version_info = (0, 6, 0, 'alpha') __version__ = "0.6.0a" __author__ = "Rossen Georgiev" +version_info = (0, 6, 0, 'alpha') + from steam.steamid import SteamID from steam.webapi import WebAPI