Metadata-Version: 2.4
Name: winrt-WindowsAppSDK
Version: 3.2.0
Summary: Windows Runtime SDK for Python header files
License-Expression: MIT
Project-URL: Documentation, https://pywinrt.readthedocs.io
Project-URL: Repository, https://github.com/pywinrt/pywinrt
Project-URL: Changelog, https://github.com/pywinrt/pywinrt/blob/main/CHANGELOG.md
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Intended Audience :: Developers
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: winrt-sdk==3.2.0
Requires-Dist: webview2-Microsoft.Web.WebView2.Core==3.2.0

<!-- warning: Please don't edit this file. It was automatically generated. -->

# winrt-WindowsAppSDK

This package provides PyWinRT header files for WindowsAppSDK.

This package is a build time dependency, not a runtime dependency.

Example use in a `pyproject.toml` file:

```toml
[build-system]
requires = ["setuptools", "winrt-sdk", "winrt-WindowsAppSDK"]
build-backend = "setuptools.build_meta"
```

Then in your `setup.py`:

```python
from setuptools import setup
from winrt_sdk import get_include_dirs

setup(
    ...
    include_dirs=get_include_dirs()
)
```

For the runtime package, use `winrt-runtime` and the various namespace packages
instead.
