Coverage for src / taipanstack / __init__.py: 100%
5 statements
« prev ^ index » next coverage.py v7.13.5, created at 2026-03-23 14:54 +0000
« prev ^ index » next coverage.py v7.13.5, created at 2026-03-23 14:54 +0000
1"""
2TaipanStack - Python Security & Quality Bootstrapper.
4A modular, secure, and scalable Python stack for robust development.
5Supports Python 3.11+ with version-aware optimizations for 3.13/3.14.
6"""
8__version__ = "0.3.11"
10from taipanstack.config.version_config import (
11 VersionRecommendations,
12 get_version_recommendations,
13)
14from taipanstack.core.compat import (
15 PY312,
16 PY313,
17 PY314,
18 PY_VERSION,
19 get_features,
20 get_python_info,
21)
22from taipanstack.security.validators import (
23 validate_email,
24 validate_project_name,
25 validate_python_version,
26)
28__all__ = [
29 "PY312",
30 "PY313",
31 "PY314",
32 "PY_VERSION",
33 "VersionRecommendations",
34 "get_features",
35 "get_python_info",
36 "get_version_recommendations",
37 "validate_email",
38 "validate_project_name",
39 "validate_python_version",
40]