From 6c2e0630cd47a59809521eddf8f7aaa0c678bf1f Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Fri, 11 Jun 2021 16:20:35 -0400 Subject: [PATCH] Add `tricycle` and `msgspec` deps --- setup.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index cde066d..e7cc512 100755 --- a/setup.py +++ b/setup.py @@ -38,13 +38,20 @@ setup( 'tractor.testing', ], install_requires=[ + + # trio related 'trio>0.8', - 'msgpack', 'async_generator', + 'tricycle', + 'trio_typing', + 'colorlog', 'wrapt', - 'trio_typing', 'pdbpp', + + # serialization + 'msgpack', + 'msgspec', ], tests_require=['pytest'], python_requires=">=3.7",