summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorBrian Wellington <bwelling@xbill.org>2020-03-11 09:31:22 -0700
committerBrian Wellington <bwelling@xbill.org>2020-03-11 09:31:22 -0700
commitf1245d42704b70bf17813ac2b22a517f577af1ae (patch)
treece0022a4338a6146496570b2438b4795bb28e5a6 /setup.py
parentbabace649ce9be590896074c915068eab150417c (diff)
downloaddnspython-f1245d42704b70bf17813ac2b22a517f577af1ae.tar.gz
Add support for EdDSA DNSSEC algorithms.
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 2dac565..436bd13 100755
--- a/setup.py
+++ b/setup.py
@@ -75,7 +75,7 @@ direct manipulation of DNS zones, messages, names, and records.""",
'tests_require': ['typing ; python_version<"3.5"'],
'extras_require': {
'IDNA': ['idna>=2.1'],
- 'DNSSEC': ['pycryptodome>=3.4'],
+ 'DNSSEC': ['pycryptodome>=3.4', 'ecpy'],
},
'ext_modules': ext_modules if compile_cython else None,
'zip_safe': False if compile_cython else None,