diff --git a/setup.py b/setup.py index 07cb992..6230d55 100644 --- a/setup.py +++ b/setup.py @@ -3,6 +3,14 @@ from pyduofern import __version__ as version +test_deps = [ + 'tox', 'pytest<8', 'pytest-asyncio' +], + +extras = { + 'test': test_deps, +} + setup(name='pyduofern', version=version, description='Library for controlling Rademacher DuoFern actors using python. Requires the Rademacher' @@ -27,9 +35,7 @@ zip_safe=False, include_package_data=False, - tests_require=[ - 'tox', 'pytest<8', 'pytest-asyncio' - ], + tests_require=test_deps, scripts=["scripts/duofern_cli.py"],