summaryrefslogtreecommitdiff
path: root/tests/testdata/headers.dist/setup.py
blob: 6cf9b46faf2a0fd4417c39328d387d08bc90d438 (plain)
1
2
3
4
5
6
7
8
9
10
from __future__ import annotations

from setuptools import setup

setup(
    name="headers.dist",
    version="0.1",
    description="A distribution with headers",
    headers=["header.h"],
)