generated from vanHeemstraSystems/template-default-repository
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1f3f15d
commit c116fa8
Showing
2 changed files
with
34 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Global directories | ||
__pycache__/ | ||
|
||
# Global files | ||
*.py[cod] | ||
*.dll | ||
*.so | ||
*.log | ||
*.swp | ||
|
||
# Root directories | ||
/.benchmarks/ | ||
/.env/ | ||
/.idea/ | ||
/.mypy_cache/ | ||
/.pytest_cache/ | ||
/.vscode/ | ||
/dist/ | ||
/site/ | ||
|
||
# Root files | ||
/.coverage* | ||
|
||
# Version file | ||
/src/threagile_builder/_version.py |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# SPDX-FileCopyrightText: 2024-present Willem van Heemstra <[email protected]> | ||
# | ||
# SPDX-License-Identifier: MIT | ||
import sys | ||
|
||
if __name__ == '__main__': | ||
from threagile_builder.cli import threagile_builder | ||
|
||
sys.exit(threagile_builder()) |