]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
Add dnssecalgs.
authorBob Halley <halley@dnspython.org>
Sun, 25 Jun 2023 21:05:02 +0000 (14:05 -0700)
committerBob Halley <halley@dnspython.org>
Sun, 25 Jun 2023 21:05:02 +0000 (14:05 -0700)
dns/__init__.py
setup.py

index 9abdf018d37c3b52f9d16cbc947e83d815ba01dc..a4249b9e7207639a0932109e5d38e7db0b732fca 100644 (file)
@@ -22,6 +22,7 @@ __all__ = [
     "asyncquery",
     "asyncresolver",
     "dnssec",
+    "dnssecalgs",
     "dnssectypes",
     "e164",
     "edns",
index 2ccaf8bef92d3ef6e34eff1f2d571540d72858b3..cbbbecb07675ebd1f0a1e4050ea3ee1d134c6bff 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -18,8 +18,8 @@
 # OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 
 import sys
-from setuptools import setup
 
+from setuptools import setup
 
 try:
     sys.argv.remove("--cython-compile")
@@ -30,7 +30,13 @@ else:
     from Cython.Build import cythonize
 
     ext_modules = cythonize(
-        ["dns/*.py", "dns/quic/*.py", "dns/rdtypes/*.py", "dns/rdtypes/*/*.py"],
+        [
+            "dns/*.py",
+            "dns/dnssecalgs/*.py",
+            "dns/quic/*.py",
+            "dns/rdtypes/*.py",
+            "dns/rdtypes/*/*.py",
+        ],
         language_level="3",
     )