From 229ac42db909a7180677e0f93e3ca02f1abe0b27 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Wed, 13 Jun 2018 13:32:36 +0200 Subject: [PATCH] tests: add "testing" extras --- README | 5 +++++ setup.py | 6 +++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/README b/README index bebaffd..2c21495 100644 --- a/README +++ b/README @@ -59,6 +59,11 @@ Alternatively, if you have testrepository installed: testr init testr run +You should install all optional dependencies, e.g. by creating a virtualenv +and using: + + pip install -e '.[testing]' + The included ARC tests are very limited. The primary testing method for ARC is using the ARC test suite: https://github.com/ValiMail/arc_test_suite diff --git a/setup.py b/setup.py index 07a1b67..833f09b 100644 --- a/setup.py +++ b/setup.py @@ -77,7 +77,11 @@ verification.""", ], zip_safe = False, extras_require={ - 'ed25519': ['PyNaCl'], + 'testing': [ + 'authres', + 'pynacl', + ], + 'ed25519': ['pynacl'], 'ARC': ['authres'] }, **kw