Skip to content

Commit

Permalink
TESTING
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-kiszka committed Jan 24, 2025
1 parent 0f22bde commit a74ba49
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# kas - setup tool for bitbake based projects
#
# Copyright (c) Siemens AG, 2017-2019
# Copyright (c) Siemens AG, 2017-2025
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand All @@ -23,18 +23,22 @@
Setup script for kas, a setup tool for bitbake based projects
"""

from setuptools import setup, find_packages

import sys
sys.path.append('.')

from setuptools import setup

from kas import __version__
from kas import __version__ # noqa: E402

__license__ = 'MIT'
__copyright__ = 'Copyright (c) Siemens AG, 2017-2019'
__copyright__ = 'Copyright (c) Siemens AG, 2017-2025'

setup(
version=__version__,
download_url=('https://github.com/siemens/'
f'kas/archive/{__version__}.tar.gz'),

# still needed for python3.6
name='kas',
packages=find_packages(),
)

0 comments on commit a74ba49

Please sign in to comment.