Metadata-Version: 2.4
Name: ASnake
Version: 0.13.44
Summary: Python optimizing compiler for the ASnake programming language.
Author: Ahri Fox
License-Expression: Apache-2.0
Project-URL: Homepage, https://asnake.org
Project-URL: Github, https://github.com/AhriFoxSnek/ASnake
Project-URL: Issues, https://github.com/AhriFoxSnek/ASnake/issues
Keywords: programming language,transpiler,pyston,compiler,optimizer
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: Operating System :: POSIX :: Linux
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Cython
Classifier: Programming Language :: Python :: Implementation
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: MicroPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Compilers
Classifier: Topic :: Software Development :: Code Generators
Classifier: Topic :: Software Development :: Version Control :: Git
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: sly>=0.4
Requires-Dist: autopep8>=1.5.5
Requires-Dist: ruff-api>=0.1.0
Dynamic: license-file

# ASnake
Optimizing Python transpiler for the ASnake programming language.

Documentation of the language is available at: https://asnake.org/docs/docs.html

You can also get support or hang out in the ASnake discord: https://discord.gg/ySDFchT

To install run:
```console
python -m pip install ASnake
```
You may have to use `py` or `python3` or similar depending on what you have installed for a Python interpreter.

After that, ASnake and all it's compiler flags can be callable via:
```console
python -m ASnake
```
Here are some examples:
```console
python -m ASnake -e "'Hello world!'"
python -m ASnake --help
python -m ASnake --compile --run test.asnake
python -m ASnake -e "loop 12 do 'the code goes inside the strings dummy, don\'t you know bash?'"
```
