Metadata-Version: 2.2
Name: winrt-Microsoft.UI.Xaml
Version: 3.0.0
Summary: Windows Runtime SDK for Python header files
License: 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.0.0
Requires-Dist: webview2-Microsoft.Web.WebView2.Core==3.0.0

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

# winrt-Microsoft.UI.Xaml

This package provides PyWinRT header files for Microsoft.UI.Xaml.

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-Microsoft.UI.Xaml"]
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.
