forked from pool/python-testflo
flow based testing framework OBS-URL: https://build.opensuse.org/request/show/611987 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-testflo?expand=0&rev=1
18 lines
352 B
Diff
18 lines
352 B
Diff
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',
|