e8a179495c
- Introduced type annotations for functions, methods, and class variables - Added docstrings to improve code clarity and maintainability - Improved consistency in function signatures and replaced ambiguous types with specific ones - Updated `setup.py` and key modules with better descriptions and format adjustments
14 lines
379 B
Python
14 lines
379 B
Python
"""
|
|
Install Station Package.
|
|
|
|
A streamlined installer for GhostBSD providing a GTK+ interface
|
|
for disk partitioning and OS installation.
|
|
|
|
This package contains all the modules needed for the installation wizard
|
|
including language selection, keyboard configuration, network setup,
|
|
and filesystem management.
|
|
"""
|
|
|
|
__version__ = "0.1"
|
|
__author__ = "Eric Turgeon"
|
|
__license__ = "BSD" |