Skip to content

Commit

Permalink
Add test requirements to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgleith authored and Kirill888 committed Oct 14, 2020
1 parent 14ad3a7 commit 2a4c932
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion apps/dc_tools/setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
from setuptools import setup

TEST_REQUIREMENTS = ['pytest', 'deepdiff']

setup(
name='odc_apps_dc_tools',

Expand All @@ -16,7 +18,7 @@
license='Apache License 2.0',

python_requires='>=3.5',
tests_require=['pytest'],
tests_require=TEST_REQUIREMENTS,

install_requires=[
"click",
Expand All @@ -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',
Expand Down

0 comments on commit 2a4c932

Please sign in to comment.