Metadata-Version: 2.1
Name: agda
Version: 2.6.4
Summary: A project that packages Agda as a Python package.
Author-email: Wen Kokke <wenkokke@users.noreply.github.com>
License: MIT License
        
        Copyright (c) 2023 Wen Kokke
        
        Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
        
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: Implementation :: CPython
Requires-Python: <3.13,>=3.7.1
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: mypy
Requires-Dist: types-setuptools >=45 ; extra == 'mypy'
Provides-Extra: test
Requires-Dist: pytest <8,>=7.1 ; extra == 'test'

![The official Agda logo](https://github.com/agda/agda/blob/25cf6745e5ada6c29dd3caeeeb32bae1ee0abb88/doc/user-manual/agda.svg?raw=true)

[![GitHub Workflow Status](https://github.com/wenkokke/agda-python/actions/workflows/ci.yml/badge.svg)](https://github.com/wenkokke/agda-python/actions/workflows/ci.yml) [![PyPI](https://img.shields.io/pypi/v/agda)](https://pypi.org/project/agda/) [![Hackage](https://img.shields.io/hackage/v/Agda)](https://hackage.haskell.org/package/Agda) ![GitHub tag (latest by date)](https://img.shields.io/github/v/tag/wenkokke/agda-python) [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/agda)](https://pypi.org/project/agda/) [![PyPI - Implementation](https://img.shields.io/pypi/implementation/agda)](https://pypi.org/project/agda/)

# Agda Python Distribution

A project that packages Agda as a Python package, which allows you to install Agda from PyPI:

```bash
pip install agda
```

The PyPI package versions follow the [PvP] version numbers of Agda releases, with post-release versions (_e.g._, `v2.6.3.post1`) for patches and non-breaking changes to the documentation and packaging.

Binary wheels are provided for the following platforms:

| Platform | Release    | Architecture |
| -------- | ---------- | ------------ |
| macOS    | ≥10.10     | x86_64       |
|          | ≥13.0      | ARM64        |
| Linux    | libc ≥2.17 | x86_64       |
|          | libc ≥2.28 | aarch64      |
|          | musl ≥1.1  | x86_64       |
| Windows  |            | AMD64        |

The availability of binary wheels is largely determined by the availability of GHC binaries.

For more information, see:

- [The Agda Source Code]
- [The Agda User Manual]

[PvP]: https://pvp.haskell.org
[The Agda Source Code]: https://github.com/agda/agda#readme
[The Agda User Manual]: https://agda.readthedocs.io/en/v2.6.3/
