1#!/usr/bin/env python3
2
3import sys
4
5from setuptools import setup  # type: ignore
6
7if sys.version_info < (3, 6, 0):
8    sys.exit(
9        "Python 3.6 or later is required. "
10        "See https://github.com/pypa/pipx "
11        "for installation instructions."
12    )
13
14setup()
15