diff --git a/cryptodatahub/dnssec/__init__.py b/cryptodatahub/dnsrec/__init__.py similarity index 100% rename from cryptodatahub/dnssec/__init__.py rename to cryptodatahub/dnsrec/__init__.py diff --git a/cryptodatahub/dnssec/algorithm.json b/cryptodatahub/dnsrec/algorithm.json similarity index 100% rename from cryptodatahub/dnssec/algorithm.json rename to cryptodatahub/dnsrec/algorithm.json diff --git a/cryptodatahub/dnssec/algorithm.py b/cryptodatahub/dnsrec/algorithm.py similarity index 100% rename from cryptodatahub/dnssec/algorithm.py rename to cryptodatahub/dnsrec/algorithm.py diff --git a/cryptodatahub/dnssec/digest-type.json b/cryptodatahub/dnsrec/digest-type.json similarity index 100% rename from cryptodatahub/dnssec/digest-type.json rename to cryptodatahub/dnsrec/digest-type.json diff --git a/cryptodatahub/dnssec/rr-type.json b/cryptodatahub/dnsrec/rr-type.json similarity index 100% rename from cryptodatahub/dnssec/rr-type.json rename to cryptodatahub/dnsrec/rr-type.json diff --git a/setup.py b/setup.py index 3e27262..434d54f 100644 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ def test_discover(): 'Issues': __setup__.__url__ + '/-/issues', 'Source': __setup__.__url__, }, - keywords='ssl tls ssh', + keywords='ssl tls ssh dns', install_requires=install_requirements, extras_require={ @@ -61,12 +61,14 @@ def test_discover(): packages=[ 'cryptodatahub', 'cryptodatahub.common', + 'cryptodatahub.dnsrec', 'cryptodatahub.ssh', 'cryptodatahub.tls', ], package_data={ 'cryptodatahub.common': ['*.json'], + 'cryptodatahub.dnsrec': ['*.json'], 'cryptodatahub.ssh': ['*.json'], 'cryptodatahub.tls': ['*.json'], }, diff --git a/test/dnssec/test_algorithm.py b/test/dnssec/test_algorithm.py index 7a8fd32..4adb1f8 100644 --- a/test/dnssec/test_algorithm.py +++ b/test/dnssec/test_algorithm.py @@ -2,7 +2,7 @@ from test.common.classes import TestClasses -from cryptodatahub.dnssec.algorithm import DnsRrType, DnsSecAlgorithm, DnsSecDigestType +from cryptodatahub.dnsrec.algorithm import DnsRrType, DnsSecAlgorithm, DnsSecDigestType class TestDnsRrType(TestClasses.TestJsonCodeNumericBase):