File: setuptools.diff

package info (click to toggle)
distlib 0.4.0-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 2,232 kB
  • sloc: python: 12,386; ansic: 820; sh: 106; makefile: 3
file content (31 lines) | stat: -rw-r--r-- 717 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
From 7dfb0b3c5a958ea15345a2fefbcbdab0ea6f1cff Mon Sep 17 00:00:00 2001
From: Barry Warsaw <barry@debian.org>
Date: Tue, 19 May 2015 11:18:34 +0200
Subject: Use setuptools.setup() in order to allow the bdist_wheel command.

Forwarded: not-needed

Patch-Name: setuptools.diff
---
 setup.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

--- a/setup.py
+++ b/setup.py
@@ -5,6 +5,7 @@
 # See LICENSE.txt and CONTRIBUTORS.txt.
 #
 
+import setuptools
 import distutils.core
 from os.path import join, dirname
 
@@ -28,7 +29,7 @@ class TestCommand(distutils.core.Command
         pass
 
 
-distutils.core.setup(
+setuptools.setup(
     name='distlib',
     version=distlib.__version__,
     author='Vinay Sajip',