powertrain-build/setup.py
Henrik Wahlqvist 76f61dec1a Updates making pypi upload possible
Change-Id: I7a861287c1d2515cd1a43c343437b3e6134956f9
2024-06-14 11:17:20 +02:00

12 lines
228 B
Python

# Copyright 2024 Volvo Car Corporation
# Licensed under Apache 2.0.
"""Create a python package for powertrain-build using setuptools and PBR."""
from setuptools import setup
setup(
setup_requires=['pbr'],
pbr=True,
)