1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
# SPDX-FileCopyrightText: 2023 Stefano Babic <stefano.babic@swupdate.org>
#
# SPDX-License-Identifier: GPL-2.0-only
from setuptools import setup, find_packages
setup(
name="swupdateclient",
version="0.1",
packages=find_packages(),
url="https://github.com/sbabic/swupdate/tree/master/tools/python/swupdateclient",
license="GPL-2.0-only",
author="Stefano Babic",
author_email="stefano.babic@swupdate.org",
description="Python Client to update SWUpdate based devices",
entry_points={
"console_scripts": [
"swupdateclient=swupdateclient.main:main",
],
},
python_requires=">=3.8",
)
|