26 lines
732 B
Python
26 lines
732 B
Python
|
|
"""
|
||
|
|
tddai - Test-Driven Development with AI Support
|
||
|
|
|
||
|
|
A Python library for managing issue-driven TDD workflows with AI assistance.
|
||
|
|
Provides workspace management, test generation, and issue integration.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .workspace import WorkspaceManager, Workspace, WorkspaceStatus
|
||
|
|
from .issue_fetcher import IssueFetcher, Issue
|
||
|
|
from .test_generator import TestGenerator
|
||
|
|
from .exceptions import TddaiError, WorkspaceError, IssueError, ConfigurationError, TestGenerationError
|
||
|
|
|
||
|
|
__version__ = "0.1.0"
|
||
|
|
__all__ = [
|
||
|
|
"WorkspaceManager",
|
||
|
|
"Workspace",
|
||
|
|
"WorkspaceStatus",
|
||
|
|
"IssueFetcher",
|
||
|
|
"Issue",
|
||
|
|
"TestGenerator",
|
||
|
|
"TddaiError",
|
||
|
|
"WorkspaceError",
|
||
|
|
"IssueError",
|
||
|
|
"ConfigurationError",
|
||
|
|
"TestGenerationError",
|
||
|
|
]
|