Metadata-Version: 2.1
Name: winrt-sdk
Version: 2.2.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.14,>=3.9
Description-Content-Type: text/markdown

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

# winrt-sdk

This package provides PyWinRT header files for the Windows SDK.

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"]
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.
