powertrain-build/setup.py
Henrik Wahlqvist 65c1d746a7 Copy from Volvo Cars local project
We don't transfer git history since it may contain proprietary data that
we cannot have in an open sources version.

Change-Id: I9586124c1720db69a76b9390e208e9f0ba3b86d4
2024-05-29 08:03:54 +02:00

15 lines
284 B
Python

# Copyright 2024 Volvo Car Corporation
# Licensed under Apache 2.0.
"""Create a python package for pybuild."""
from setuptools import setup, find_packages
setup(
setup_requires=['pbr>=5.5.0'],
pbr=True,
python_requires='>=3.6, <3.11',
include_package_data=True,
)