summaryrefslogtreecommitdiffstats
path: root/python/setup.py.in
blob: 07b71454aa1bc9f369028e0ecea09e86206e83b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
from setuptools import setup

# TODO: Migrate this to a pyproject.toml once Debian 11 support is dropped.
setup(
    name="knot_resolver",
    version="@kres_version@",
    description="Knot Resolver helper data for Python",
    author="Oto Šťáva",
    author_email="oto.stava@nic.cz",
    python_requires=">=3.8,<4.0",
    py_modules=["knot_resolver"],
)