Skip to content

Commit 4ec0bb9

Browse files
committed
Uploading new PaperPC version; republishing as PaperPC
1 parent eb2e168 commit 4ec0bb9

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# The Little Python Computer
1+
# PaperPC
22

3-
[![PyPI version](https://img.shields.io/pypi/v/little-python-computer)](https://pypi.org/project/little-python-computer/)
3+
[![PyPI version](https://img.shields.io/pypi/v/paperpc)](https://pypi.org/project/paperpc/)
44

55
A python implementation of the [Little Man Computer](https://en.wikipedia.org/wiki/Little_man_computer) meant for
66
use in CI/CD (i.e. GitHub Actions) to verify student programs using the LMC ISA. This implementation uses the
@@ -9,7 +9,7 @@ another paper computer, the [CARDIAC](https://en.wikipedia.org/wiki/CARDboard_Il
99

1010
## Install
1111

12-
This project is available via `PyPI`: `python -m pip install little-python-computer`.
12+
This project is available via `PyPI`: `python -m pip install paperpc`.
1313

1414
## ISA
1515

@@ -29,7 +29,7 @@ This project is available via `PyPI`: `python -m pip install little-python-compu
2929

3030
## Using the program
3131

32-
Invoke the package via the CLI script: `lpc example.lpc --inputs 2,3`
32+
Invoke the package via the CLI script: `paperpc example.ppc --inputs 2,3`
3333

3434
Here, add the command flag `--inputs` after the name of the script followed by a comma-separated list of values to include as
3535
inputs to the machine. The program will parse the correct input when encountering the `901` instruction. Think of it like

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ requires = ["setuptools>=61.0"]
33
build-backend = "setuptools.build_meta:__legacy__"
44

55
[project]
6-
name = "little-python-computer"
7-
version = "0.2.3"
6+
name = "PaperPC"
7+
version = "0.3.0"
88
dependencies = [
99
"arglite"
1010
]
@@ -15,4 +15,4 @@ readme = "README.md"
1515
description = "Python implementation of the Little Man Computer with additional SFT instruction."
1616

1717
[project.scripts]
18-
lpc = "lpc:main.main"
18+
paperpc = "paperpc:main.main"
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)