Skip to content

Commit

Permalink
1.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
FIRST_NAME LAST_NAME authored and FIRST_NAME LAST_NAME committed Jul 9, 2023
1 parent 2e41849 commit 45f4f2d
Show file tree
Hide file tree
Showing 12 changed files with 17 additions and 40 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/python-publish.yml

This file was deleted.

Binary file removed dist/roblox-py-1.4.5.tar.gz
Binary file not shown.
Binary file removed dist/roblox.py-1.4.5-py3-none-any.whl
Binary file not shown.
Binary file removed dist/roblox.py-1.4.5.tar.gz
Binary file not shown.
Binary file removed dist/roblox_py-1.4.5-py3-none-any.whl
Binary file not shown.
4 changes: 0 additions & 4 deletions roblox_py.egg-info/PKG-INFO

This file was deleted.

27 changes: 0 additions & 27 deletions roblox_py.egg-info/SOURCES.txt

This file was deleted.

1 change: 0 additions & 1 deletion roblox_py.egg-info/dependency_links.txt

This file was deleted.

2 changes: 0 additions & 2 deletions roblox_py.egg-info/entry_points.txt

This file was deleted.

1 change: 0 additions & 1 deletion roblox_py.egg-info/top_level.txt

This file was deleted.

8 changes: 6 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
[metadata]
name = roblox-pyc
version = 1.4.5
version = 1.5.5
description = A python, c, and cpp compiler to luau.
github = https://github.com/AsynchronousAI/roblox-pyc

[options]
packages = src


[options.entry_points]
console_scripts =
roblox-py = src.robloxpy:typerapp
roblox-py = src.robloxpy:typerapp
roblox-c = src.robloxpy:typerapp2
roblox-cpp = src.robloxpy:typerapp3
12 changes: 11 additions & 1 deletion src/robloxpy.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ def flake(self, message):

app = Flask(__name__)
typerapp = typer.Typer()
typerapp2 = typer.Typer()
typerapp3 = typer.Typer()
translator = Translator()

def backwordreplace(s, old, new, occurrence):
Expand Down Expand Up @@ -165,4 +167,12 @@ def incli():


if __name__ == "__main__":
typerapp()
print(blue("Test mode"))
mode = input("Select which app to run (1, 2, 3): ")

if mode == "1":
typerapp()
elif mode == "2":
typerapp2()
elif mode == "3":
typerapp3()

0 comments on commit 45f4f2d

Please sign in to comment.