Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
wvanheemstra committed Oct 31, 2024
1 parent 1f3f15d commit c116fa8
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
25 changes: 25 additions & 0 deletions threagile-builder/.gitignore
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
9 changes: 9 additions & 0 deletions threagile-builder/src/threagile_builder/__main__.py
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())

0 comments on commit c116fa8

Please sign in to comment.