File: 03_force_setuptools.patch

package info (click to toggle)
python-urllib3 1.9.1-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,228 kB
  • ctags: 1,135
  • sloc: python: 5,736; makefile: 155
file content (15 lines) | stat: -rw-r--r-- 304 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Author: Barry Warsaw <barry@debian.org>
Description: Use setuptools.setup() so that the bdist_wheel
 command will work.
Last-Update: 2014-05-15

--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
 #!/usr/bin/env python
 
-from distutils.core import setup
+from setuptools import setup
 
 import os
 import re