From 8b2caa3b55bac139266da109e1c72094c8cf0136 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 19 Jun 2014 08:25:46 +0200 Subject: [PATCH] Add script to update 3rdparty stuff --- scripts/update_3rdparty.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 scripts/update_3rdparty.py diff --git a/scripts/update_3rdparty.py b/scripts/update_3rdparty.py new file mode 100644 index 000000000..166afc2f3 --- /dev/null +++ b/scripts/update_3rdparty.py @@ -0,0 +1,8 @@ +#!/usr/bin/python + +"""Update 3rd-party files (currently only ez_setup.py).""" + +from urllib.request import urlretrieve + +urlretrieve('https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py', + 'scripts/ez_setup.py')