File: setup.py

package info (click to toggle)
swupdate 2024.12.1%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 9,732 kB
  • sloc: ansic: 67,854; perl: 6,317; cpp: 1,829; makefile: 1,015; sh: 718; yacc: 613; python: 427; lex: 373; javascript: 229
file content (21 lines) | stat: -rw-r--r-- 655 bytes parent folder | download | duplicates (5)
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",
)