simple reorganization of __init__.py

This commit is contained in:
Istvan Ruzman
2020-08-30 14:53:11 +02:00
parent 06f46926a8
commit 03c32ce79a

View File

@@ -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 <istvan@ruzman.eu>"
__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"]