-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
README + cmd entrypoint + bump version
- Loading branch information
Showing
4 changed files
with
41 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,31 @@ | ||
# Eryx | ||
A decently fast simple dynamically typed programming language similar to javascript/python. | ||
[![License](https://img.shields.io/pypi/l/Eryx)](/LICENSE) | ||
[![PyPI](https://img.shields.io/pypi/v/Eryx)][pypi_url] | ||
[![Build Status](https://img.shields.io/github/actions/workflow/status/ImShyMike/Eryx/ci.yml)](https://github.com/ImShyMike/Eryx/actions) | ||
[![Python Version](https://img.shields.io/pypi/pyversions/Eryx)][pypi_url] | ||
[![PyPI - Downloads](https://img.shields.io/pypi/dm/Eryx)][pypi_url] | ||
[![PyPI - Wheel](https://img.shields.io/pypi/wheel/Eryx)][pypi_url] | ||
|
||
[pypi_url]: https://pypi.org/project/Eryx | ||
|
||
## What is Eryx? | ||
Eryx is a decently fast simple dynamically typed programming language similar to javascript/python. | ||
|
||
## Installation | ||
To install the latest stable release, just install it from PyPI using: | ||
```sh | ||
pip install eryx | ||
``` | ||
If you want to install the latest beta version head over to the [beta releases](https://github.com/ImShyMike/Eryx/releases/tag/beta) page, download the desired `.whl` file and install it using: | ||
```sh | ||
pip install Eryx-(version)-py3-none-any.whl | ||
``` | ||
|
||
## Documentation | ||
Coming soon... | ||
|
||
## Thanks | ||
A huge thanks to [tylerlaceby](https://www.youtube.com/@tylerlaceby) for his ["Build a Custom Scripting Language In Typescript"](https://www.youtube.com/playlist?list=PL_2VhOvlMk4UHGqYCLWc6GO8FaPl8fQTh) playlist. | ||
|
||
## License | ||
This project is licensed under the [MIT License](LICENSE). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
"""Version of the package.""" | ||
|
||
CURRENT_VERSION = "0.1.0" | ||
CURRENT_VERSION = "0.1.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters