Metadata-Version: 2.4
Name: LinkPython-extern
Version: 1.1.1
Summary: A fork of the LinkPython wrapper for Ableton Link
Author: gonzaloflirt
Maintainer: thegamecracks
License: This depends on [Link](https://github.com/ableton/link.git) and [pybind11](https://github.com/pybind/pybind11).
        Please mind the licenses of those libraries and their dependencies
        
        This is free and unencumbered software released into the public domain.
        
        Anyone is free to copy, modify, publish, use, compile, sell, or
        distribute this software, either in source code form or as a compiled
        binary, for any purpose, commercial or non-commercial, and by any
        means.
        
        In jurisdictions that recognize copyright laws, the author or authors
        of this software dedicate any and all copyright interest in the
        software to the public domain. We make this dedication for the benefit
        of the public at large and to the detriment of our heirs and
        successors. We intend this dedication to be an overt act of
        relinquishment in perpetuity of all present and future rights to this
        software under copyright law.
        
        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 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.
        
        For more information, please refer to <http://unlicense.org>
Project-URL: Homepage, https://github.com/thegamecracks/link-python
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: C++
Classifier: Programming Language :: Python
Classifier: Topic :: System :: Networking
Requires-Python: <3.14,>=3.7
Description-Content-Type: text/markdown
License-File: LICENSE.md
Provides-Extra: tests
Requires-Dist: pytest>=7.4.4; extra == "tests"
Dynamic: license-file

# Python wrapper for [Ableton Link][1]

[![Build](https://github.com/thegamecracks/link-python/actions/workflows/build_wheels.yml/badge.svg)](https://github.com/thegamecracks/link-python/actions/workflows/build_wheels.yml)
[![PyPI](https://img.shields.io/pypi/v/LinkPython-extern?label=View%20on%20pypi&style=flat-square)](https://pypi.org/project/LinkPython-extern/)

This fork was created to streamline the user experience for installing LinkPython
by uploading pre-built wheels on PyPI. More information about LinkPython
can be found [in their repository][2].

## Python compatibility

|               | v1.0.0 | v1.0.1 | v1.0.4 | v1.1.0 | main |
|---------------|:------:|:------:|:------:|:------:|:----:|
| CPython 3.6   |   ✅   |   ✅   |   ✅   |  ❌  | ❌   |
| CPython 3.7   |   ✅   |   ✅   |   ✅   |  ✅  | ✅   |
| CPython 3.8   |   ✅   |   ✅   |   ✅   |  ✅  | ✅   |
| CPython 3.9   |   ✅   |   ✅   |   ✅   |  ✅  | ✅   |
| CPython 3.10  |   ✅   |   ✅   |   ✅   |  ✅  | ✅   |
| CPython 3.11  |   ❌   |   ✅   |   ✅   |  ✅  | ✅   |
| CPython 3.12  |   ❌   |   ❌   |   ✅   |  ✅  | ✅   |
| CPython 3.13  |   ❌   |   ❌   |   ❌   |  ✅¹ | ✅¹  |
| CPython 3.14+ |   ❌   |   ❌   |   ❌   |  ❌  | ❌   |

¹ Free-threaded builds of CPython are not yet supported.

## Installation

Distributions are available on PyPI with the [LinkPython-extern][3] package.
Example install command:

```sh
pip install LinkPython-extern
```

## Building from source

If you want to build this package from source, you will need CMake installed.
You however do not need to manually build the project, as setuptools will
handle invoking cmake when you install it with pip. To install directly
from the main branch:

```sh
pip install git+https://github.com/thegamecracks/link-python
```

## License:
This depends on [Link][1] and [pybind11][4]. Please mind the licenses of those libraries and their dependencies.

[1]: https://github.com/ableton/link.git
[2]: https://github.com/gonzaloflirt/link-python
[3]: https://pypi.org/project/LinkPython-extern/
[4]: https://github.com/pybind/pybind11
