diff --git a/src/pyrad3/__init__.py b/src/pyrad3/__init__.py index 52843fa..6b5886a 100644 --- a/src/pyrad3/__init__.py +++ b/src/pyrad3/__init__.py @@ -1,3 +1,6 @@ +# Copyright 2020 Istvan Ruzman +# SPDX-License-Identifier: MIT OR Apache-2.0 + """Python RADIUS client code. pyrad is an implementation of a RADIUS client as described in RFC2865. @@ -36,11 +39,9 @@ This package contains four modules: - tools: utility functions """ -__docformat__ = "epytext en" - __author__ = "Istvan Ruzman " -__url__ = "http://pyrad.readthedocs.io/en/latest/?badge=latest" __copyright__ = "Copyright 2020 Istvan Ruzman" __version__ = "0.1.0" +__docformat__ = "restructuredtext en" __all__ = ["client", "code", "dictionary", "packet", "tools", "utils"]