From 50db9e14741e831e8c0ea84699c16268b8d1cf54 Mon Sep 17 00:00:00 2001 From: Chih Cheng Liang Date: Tue, 19 Nov 2019 18:21:21 +0800 Subject: [PATCH] add setup.py --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index eead1bfe..cbb8eaf8 100644 --- a/setup.py +++ b/setup.py @@ -9,6 +9,7 @@ extras_require = { "pytest>=4.6.3,<5.0.0", "pytest-asyncio>=0.10.0,<1.0.0", "pytest-xdist>=1.30.0", + "pytest-trio>=0.5.2", ], "lint": [ "mypy>=0.701,<1.0", @@ -68,6 +69,8 @@ setuptools.setup( "coincurve>=10.0.0,<11.0.0", "fastecdsa==1.7.4", "pynacl==1.3.0", + "trio-asyncio>=0.10.0", + "trio>=0.13.0", ], extras_require=extras_require, packages=setuptools.find_packages(exclude=["tests", "tests.*"]),