From: Bob Halley Date: Tue, 31 Jul 2018 16:29:01 +0000 (-0700) Subject: Merge pull request #327 from tomaskrizek/cython X-Git-Tag: v1.16.0~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0b03b34077275d9efaf2cd70e1b80c546bef82c1;p=thirdparty%2Fdnspython.git Merge pull request #327 from tomaskrizek/cython setup.py: support compilation with Cython --- 0b03b34077275d9efaf2cd70e1b80c546bef82c1 diff --cc setup.py index d190eb62,5f8427db..5fb534da --- a/setup.py +++ b/setup.py @@@ -62,8 -71,10 +71,10 @@@ direct manipulation of DNS zones, messa 'provides': ['dns'], 'extras_require': { 'IDNA': ['idna>=2.1'], - 'DNSSEC': ['pycrypto>=2.6.1', 'ecdsa>=0.13'], + 'DNSSEC': ['pycryptodome', 'ecdsa>=0.13'], }, + 'ext_modules': ext_modules if compile_cython else None, + 'zip_safe': False if compile_cython else None, } setup(**kwargs)