forked from goodboy/tractor
1
0
Fork 0

Add `tricycle` and `msgspec` deps

prehardkill
Tyler Goodlet 2021-06-11 16:20:35 -04:00
parent c83b9cc940
commit 6c2e0630cd
1 changed files with 9 additions and 2 deletions

View File

@ -38,13 +38,20 @@ setup(
'tractor.testing', 'tractor.testing',
], ],
install_requires=[ install_requires=[
# trio related
'trio>0.8', 'trio>0.8',
'msgpack',
'async_generator', 'async_generator',
'tricycle',
'trio_typing',
'colorlog', 'colorlog',
'wrapt', 'wrapt',
'trio_typing',
'pdbpp', 'pdbpp',
# serialization
'msgpack',
'msgspec',
], ],
tests_require=['pytest'], tests_require=['pytest'],
python_requires=">=3.7", python_requires=">=3.7",