Metadata-Version: 2.1
Name: winrt-sdk
Version: 2.0.0b1
Summary: Windows Runtime SDK for Python header files
Author-email: David Lechner <david@pybricks.com>
License: MIT
Project-URL: Repository, https://github.com/pywrint/pywrinrt
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
Description-Content-Type: text/markdown

# 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", "setuptools-scm", "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` instead.
