From a2c63a1f49b2eaa5ab3cdaaa41e3b9c4dd4b720f Mon Sep 17 00:00:00 2001 From: Zach Tibbitts Date: Wed, 27 Jun 2007 15:42:10 +0000 Subject: [PATCH] prepping for rc1 --- setup.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/setup.py b/setup.py index 70fb35bd0..5b6aefca3 100644 --- a/setup.py +++ b/setup.py @@ -26,6 +26,15 @@ # this exception statement from your version. If you delete this exception # statement from all source files in the program, then also delete it here. +NAME = "deluge" +FULLNAME = "Deluge BitTorrent Client" +VERSION = "0.5.1.90" +AUTHOR = "Zach Tibbitts, Alon Zakai, Marcos Pinto" +EMAIL = "zach@collegegeek.org, kripkensteiner@gmail.com, marcospinto@dipconsultants.com" +DESCRIPTION = "A bittorrent client written in PyGTK" +URL = "http://deluge-torrent.org" +LICENSE = "GPLv2" + import os, platform print "Attempting to detect your system information" if platform.machine() == "i386" or platform.machine() == "i686": @@ -70,15 +79,6 @@ import msgfmt python_version = platform.python_version()[0:3] -NAME = "deluge" -FULLNAME = "Deluge BitTorrent Client" -VERSION = "0.5.1" -AUTHOR = "Zach Tibbitts, Alon Zakai, Marcos Pinto" -EMAIL = "zach@collegegeek.org, kripkensteiner@gmail.com, marcospinto@dipconsultants.com" -DESCRIPTION = "A bittorrent client written in PyGTK" -URL = "http://deluge-torrent.org" -LICENSE = "GPLv2" - EXTRA_COMPILE_ARGS = ["-Wno-missing-braces"] if ARCH == "x64": EXTRA_COMPILE_ARGS.append("-DAMD64")