From: Bob Halley Date: Sat, 8 Oct 2016 23:36:36 +0000 (-0700) Subject: add extras_require X-Git-Tag: v1.16.0~132 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=28c99cc66448b0df8ba2c9e959f46217c912e57e;p=thirdparty%2Fdnspython.git add extras_require --- diff --git a/setup.py b/setup.py index 89e2caec..b4511fa3 100755 --- 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)