14
0

Accepting request 611987 from devel:languages:python:misc

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
This commit is contained in:
Todd R
2018-05-24 20:56:56 +00:00
committed by Git OBS Bridge
commit f8e9723644
7 changed files with 156 additions and 0 deletions

17
use_setuptools.patch Normal file
View File

@@ -0,0 +1,17 @@
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',