aboutsummaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python/python-cliff/remove-distribute-dependency.patch
blob: 18aab4ccd06b73057c0c53d81b3fecf44018a4ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Index: cliff-1.3.2/setup.py
===================================================================
--- cliff-1.3.2.orig/setup.py
+++ cliff-1.3.2/setup.py
@@ -5,10 +5,6 @@ PROJECT = 'cliff'
 # Change docs/source/conf.py too!
 VERSION = '1.3.2'
 
-# Bootstrap installation of Distribute
-import distribute_setup
-distribute_setup.use_setuptools()
-
 from setuptools import setup, find_packages
 
 from distutils.util import convert_path
@@ -22,7 +18,6 @@ except IOError:
     long_description = ''
 
 install_requires = [
-    'distribute',
     'PrettyTable>=0.6,<0.8',
     'cmd2==0.6.4',
 ]