From 63c6e8fdcaa536287f51dc98ee921af56c0aae2d Mon Sep 17 00:00:00 2001 From: Tom Gillespie Date: Sat, 6 Apr 2019 01:51:13 -0400 Subject: [PATCH] setups added wheel dev dependency --- htmlfn/setup.py | 2 +- librdflib/setup.py | 2 +- neurondm/setup.py | 2 +- nifstd/setup.py | 4 +++- setup.py | 2 +- ttlser/setup.py | 2 +- 6 files changed, 8 insertions(+), 6 deletions(-) diff --git a/htmlfn/setup.py b/htmlfn/setup.py index ce611f44..9a1ba4e4 100644 --- a/htmlfn/setup.py +++ b/htmlfn/setup.py @@ -36,7 +36,7 @@ def find_version(filename): packages=['htmlfn'], python_requires='>=3.6', tests_require=tests_require, - extras_require={'dev': ['pytest-cov'], + extras_require={'dev': ['pytest-cov', 'wheel'], 'test': tests_require, }, ) diff --git a/librdflib/setup.py b/librdflib/setup.py index af4c3699..7aac6a83 100644 --- a/librdflib/setup.py +++ b/librdflib/setup.py @@ -38,7 +38,7 @@ def find_version(filename): install_requires=[ 'rdflib', # really 5.0.0 if my changes go in but dev < 5 ], - extras_require={'dev': ['pytest-cov'], + extras_require={'dev': ['pytest-cov', 'wheel'], 'test': tests_require, }, entry_points={ diff --git a/neurondm/setup.py b/neurondm/setup.py index a2f6df60..54478ce7 100644 --- a/neurondm/setup.py +++ b/neurondm/setup.py @@ -40,7 +40,7 @@ def find_version(filename): install_requires=[ 'pyontutils>=0.1.0', ], - extras_require={'dev': ['pytest-cov'], + extras_require={'dev': ['pytest-cov', 'wheel'], 'test': tests_require, 'notebook': ['jupyter'], }, diff --git a/nifstd/setup.py b/nifstd/setup.py index 43446669..c0b34d51 100644 --- a/nifstd/setup.py +++ b/nifstd/setup.py @@ -47,7 +47,9 @@ def find_version(filename): ], extras_require={'dev': ['mysql-connector', 'protobuf', - 'pytest-cov',], + 'pytest-cov', + 'wheel', + ], 'spell': ['hunspell'], 'test': tests_require, }, diff --git a/setup.py b/setup.py index 75fc2816..5ba89fff 100644 --- a/setup.py +++ b/setup.py @@ -52,7 +52,7 @@ def find_version(filename): 'requests', 'ttlser', ], - extras_require={'dev': ['pytest-cov'], + extras_require={'dev': ['pytest-cov', 'wheel'], 'spell': ['hunspell'], 'test': tests_require, }, diff --git a/ttlser/setup.py b/ttlser/setup.py index 204356e7..4201633c 100644 --- a/ttlser/setup.py +++ b/ttlser/setup.py @@ -40,7 +40,7 @@ def find_version(filename): install_requires=[ 'neurdflib', # really 5.0.0 if my changes go in but dev < 5 ], - extras_require={'dev': ['pytest-cov'], + extras_require={'dev': ['pytest-cov', 'wheel'], 'ttlfmt': ['docopt', 'joblib', # FIXME better if this were optional? or just use a PPE? ],