Metadata-Version: 2.4
Name: lyric-lang
Version: 1.0.2
Summary: Lyric is an experimental interpreted programming language developed by MiraNova Studios.
Author-email: MiraNova Studios <aeonath@miranova.studio>
Project-URL: Homepage, https://lyric-lang.org
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.14
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: flake8>=5.0.0; extra == "dev"
Dynamic: license-file

# Lyric

Lyric is an experimental interpreted programming language built in Python, featuring strict type declarations, classes with inheritance, Python interoperability, and exception handling.

**Version:** 1.0.1 (Alpha)  
**Docs:** [lyric-lang.org](https://lyric-lang.org)  
**Source:** [GitHub](https://github.com/aeonath/lyric-lang)  

## Install

```bash
pip install lyric-lang
```

Requires Python 3.10+.

## Usage

```bash
lyric program.ly          # run a file
lyric -i                  # interactive REPL
lyric -i "print 2 + 2"    # evaluate an expression
```

## Example

Hello world program.

```lyric
def main() {
    print "Hello World"
}
```

## Bugs

Bug reports and feedback are welcome at [GitHub Issues](https://github.com/aeonath/lyric-lang/issues).

---

Copyright (c) 2026 MiraNova Studios. Licensed under the [GNU General Public License v3.0](https://www.gnu.org/licenses/gpl-3.0.html).
