8 lines
164 B
Python
8 lines
164 B
Python
# Copyright 2020-2021 Ternaris.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
"""Minimal setuptools boilerplate."""
|
|
|
|
from setuptools import setup # type: ignore
|
|
|
|
setup()
|