14
0
Files
python-testflo/use_setuptools.patch

18 lines
352 B
Diff
Raw Normal View History

From: toddrme2178@gmail.com
Date: 2017-05-24
Subject: use setuptools instead of distutils
Some of the optional commands need setuptools.
In particular this is needed for the entrypoints.
---
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,5 @@
-from distutils.core import setup
+from setuptools import setup
setup(name='testflo',
version='1.2',