]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
add extras_require
authorBob Halley <halley@dnspython.org>
Sat, 8 Oct 2016 23:36:36 +0000 (16:36 -0700)
committerBob Halley <halley@dnspython.org>
Sat, 8 Oct 2016 23:36:36 +0000 (16:36 -0700)
setup.py

index 89e2caec1387c3761b45ad1c081341dc75dafd92..b4511fa37253e374fa14e9593ab043ba30767c63 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -60,6 +60,10 @@ direct manipulation of DNS zones, messages, names, and records.""",
         ],
     'test_suite': 'tests',
     'provides': ['dns'],
+    'extras_require': {
+        'IDNA': ['idna>=2.1'],
+        'DNSSEC': ['pycrypto>=2.6.1', 'ecdsa>=0.13'],
+        },
     }
 
 setup(**kwargs)