From 03c32ce79aa56b5cfb978e5da0fdc99dfac45d76 Mon Sep 17 00:00:00 2001 From: Istvan Ruzman Date: Sun, 30 Aug 2020 14:53:11 +0200 Subject: [PATCH] simple reorganization of __init__.py --- src/pyrad3/__init__.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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"]