Move pyfa version data to config.py

This commit is contained in:
DarkPhoenix
2011-01-18 01:53:42 +03:00
parent 82b7a837e9
commit a316771a6a
2 changed files with 8 additions and 1 deletions

View File

@@ -4,6 +4,12 @@ import sys
# Turns on debug mode
debug = False
# Version data
version = "1.0"
tag = "git"
expansionName = "Incursion"
expansionVersion = "1.0.1"
# You can adjust these paths to your needs
# The main pyfa directory which contains run.py

View File

@@ -16,8 +16,9 @@
# You should have received a copy of the GNU General Public License
# along with pyfa. If not, see <http://www.gnu.org/licenses/>.
#===============================================================================
import config
versionString = "1.0 RC2 - INCURSION"
versionString = "{0} {1} - {2} {3}".format(config.version, config.tag, config.expansionName, config.expansionVersion)
license = "pyfa is released under GNU GPL"
licenseLocation = "gpl.txt"
developers = ("\n cncfanatics \t(Sakari Orisi)\n" , " DarkPhoenix \t(Kadesh Priestess)\n", " Darriele \t(Darriele)")