Skip to content

Commit

Permalink
fix test deps for install via gh
Browse files Browse the repository at this point in the history
  • Loading branch information
gluap committed Jan 28, 2024
1 parent f56c3fd commit fc2e540
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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"],

Expand Down

0 comments on commit fc2e540

Please sign in to comment.