Metadata-Version: 2.4
Name: volant
Version: 0.0.3
Summary: Volant Script
Author: Serban Giuroiu
Author-email: Serban Giuroiu <giuroiu@gmail.com>
License-Expression: MIT
License-File: LICENSE
Requires-Python: >=3.13
Project-URL: repository, https://github.com/serban/volant
Project-URL: changelog, https://github.com/serban/volant/blob/master/CHANGELOG.md
Description-Content-Type: text/markdown

<!--
SPDX-FileCopyrightText: Copyright © 2025 Serban Giuroiu <giuroiu@gmail.com>
SPDX-License-Identifier: MIT
-->

# Volant

```python
#!/usr/bin/env -S uv run --script
#
# /// script
# requires-python = '>=3.13'
# dependencies = ['volant']
# ///

import argparse
import volant


def main():
  parser = argparse.ArgumentParser(description='My Script')
  args = parser.parse_args()

  volant.heading('Volant')
  volant.message('Hello, world!')


if __name__ == '__main__':
  main()
```
