diff --git a/apps/dc_tools/setup.py b/apps/dc_tools/setup.py index 23ace2b88..0b79a8b66 100644 --- a/apps/dc_tools/setup.py +++ b/apps/dc_tools/setup.py @@ -1,5 +1,7 @@ from setuptools import setup +TEST_REQUIREMENTS = ['pytest', 'deepdiff'] + setup( name='odc_apps_dc_tools', @@ -16,7 +18,7 @@ license='Apache License 2.0', python_requires='>=3.5', - tests_require=['pytest'], + tests_require=TEST_REQUIREMENTS, install_requires=[ "click", @@ -25,6 +27,10 @@ 'odc_io', ], + extras_require={ + 'tests': TEST_REQUIREMENTS + }, + entry_points={ 'console_scripts': [ 'dc-index-from-tar = odc.apps.dc_tools.index_from_tar:cli',