Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Binary file added .DS_Store
Binary file not shown.
Binary file added .github/.DS_Store
Binary file not shown.
19 changes: 19 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"configurations": [
{
"type": "debugpy",
"request": "launch",
"name": "Launch RABIES",
"program": "${workspaceFolder}/${input:programPath}",
"args": [],
"console": "integratedTerminal"
}
],
"inputs": [
{
"type": "promptString",
"id": "programPath",
"description": "Enter the path to the main script of RABIES"
}
]
}
Empty file added build/lib/rabies/__init__.py
Empty file.
8 changes: 8 additions & 0 deletions build/lib/rabies/__version__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# 8b d8 Yb dP 88""Yb db dP""b8 88 dP db dP""b8 888888
# 88b d88 YbdP 88__dP dPYb dP `" 88odP dPYb dP `" 88__
# 88YbdP88 8P 88""" dP__Yb Yb 88"Yb dP__Yb Yb "88 88""
# 88 YY 88 dP 88 dP""""Yb YboodP 88 Yb dP""""Yb YboodP 888888

VERSION = (0, 5, 1)

__version__ = '.'.join(map(str, VERSION))
Empty file.
Loading