-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add meta data and tests for nestedmachine
- Loading branch information
Showing
4 changed files
with
28 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
def test_imports() -> None: | ||
from transitions_gui import WebMachine, NestedWebMachine | ||
from transitions_gui import __version__, __uri__, __license__, __copyright__, __summary__ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,7 @@ | ||
from .version import __version__ | ||
from .web import WebMachine, NestedWebMachine | ||
|
||
__copyright__ = "Copyright (c) 2024 Alexander Neumann" | ||
__license__ = "MIT" | ||
__summary__ = "A frontend for transitions state machines" | ||
__uri__ = "https://github.com/pytransitions/transitions-gui" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,7 @@ | ||
from .web import NestedWebMachine as NestedWebMachine, WebMachine as WebMachine | ||
from .version import __version__ as __version__ | ||
|
||
__copyright__: str | ||
__license__: str | ||
__summary__: str | ||
__uri__: str |