This change creates a minimal functional python package using the src layout https://packaging.python.org/en/latest/discussions/src-layout-vs-flat-layout/ pbr and pyproject.toml A minimal tox config is provided with pre-commit hooks executed via the pep8 traget for ci. Change-Id: Ibabb01280da142e3c6a3188b3845356906947757
7 lines
118 B
Python
7 lines
118 B
Python
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
import setuptools
|
|
|
|
setuptools.setup(setup_requires=["pbr>=2.0.0"], pbr=True)
|