Skip to content

Commit

Permalink
goto dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
TabulateJarl8 committed Feb 5, 2021
1 parent 85acd16 commit 8fa919e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ ti842py is a TI-BASIC to Python 3 transpiler. A transpiler is a piece of softwar
- `DelVar`
- `Prompt`
- `getKey`
- `Goto`
- `Lbl`
- [`Goto`](#goto)
- [`Lbl`](#goto)

### Planned Features
- `IS>(`
Expand All @@ -48,6 +48,9 @@ ti842py is a TI-BASIC to Python 3 transpiler. A transpiler is a piece of softwar

ti842py can be installed via PyPI or by cloning the repository. To install it with PyPI, just run `pip3 install ti842py` in a terminal. To install it locally, you can clone the repository and run `python setup.py install --user`.

### <a name="goto"></a>Goto:
To have support for goto and lbl, you need to run `pip3 install git+https://github.com/TabulateJarl8/python-goto.git@patch-2`. This is because PyPI will not allow users to install packages from outside sources.

# Usage

----
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

install_requires = [
"basically-ti-basic>=0.1.4",
"goto-statement @ https://github.com/TabulateJarl8/python-goto/archive/patch-2.zip#egg=goto_statement-1.2"
]

with open("README.md", "r") as fh:
Expand Down
2 changes: 1 addition & 1 deletion ti842py/__version__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
__title__ = "ti842py"
__description__ = "TI-BASIC to Python 3 Transpiler"
__url__ = "https://github.com/TabulateJarl8/ti842py"
__version__ = "0.1.8"
__version__ = "0.1.9"
__author__ = "Tabulate"
__author_email__ = "[email protected]"
__license__ = "GPLv3"
Expand Down

0 comments on commit 8fa919e

Please sign in to comment.