|
| 1 | +# kas - setup tool for bitbake based projects |
| 2 | +# |
| 3 | +# Copyright (c) Siemens AG, 2021-2025 |
| 4 | +# |
| 5 | +# Permission is hereby granted, free of charge, to any person obtaining a copy |
| 6 | +# of this software and associated documentation files (the "Software"), to deal |
| 7 | +# in the Software without restriction, including without limitation the rights |
| 8 | +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 9 | +# copies of the Software, and to permit persons to whom the Software is |
| 10 | +# furnished to do so, subject to the following conditions: |
| 11 | +# |
| 12 | +# The above copyright notice and this permission notice shall be |
| 13 | +# included in all copies or substantial portions of the Software. |
| 14 | +# |
| 15 | +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 16 | +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 17 | +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 18 | +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 19 | +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 20 | +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 21 | +# SOFTWARE. |
| 22 | + |
1 | 23 | [build-system] |
2 | | -requires = ["setuptools>=40.5.0", "wheel"] |
| 24 | +build-backend = "setuptools.build_meta" |
| 25 | + |
| 26 | +requires = [ "setuptools>=40.5", "wheel" ] |
| 27 | + |
| 28 | +[project] |
| 29 | +name = "kas" |
| 30 | +description = "Setup tool for bitbake based projects" |
| 31 | +readme = "README.rst" |
| 32 | +keywords = [ "OpenEmbedded bitbake development" ] |
| 33 | +license = { text = "MIT" } |
| 34 | +maintainers = [ |
| 35 | + { name = "Jan Kiszka", email = "[email protected]" }, |
| 36 | +] |
| 37 | +requires-python = ">=3.9" |
| 38 | +classifiers = [ |
| 39 | + "Development Status :: 5 - Production/Stable", |
| 40 | + "Intended Audience :: Developers", |
| 41 | + "License :: OSI Approved :: MIT License", |
| 42 | + "Programming Language :: Python :: 3 :: Only", |
| 43 | + "Programming Language :: Python :: 3.9", |
| 44 | + "Programming Language :: Python :: 3.10", |
| 45 | + "Programming Language :: Python :: 3.11", |
| 46 | + "Programming Language :: Python :: 3.12", |
| 47 | + "Programming Language :: Python :: 3.13", |
| 48 | + "Topic :: Software Development :: Build Tools", |
| 49 | +] |
| 50 | +dynamic = [ "version" ] |
| 51 | +dependencies = [ |
| 52 | + "distro>=1,<2", |
| 53 | + "gitpython>=3.1,<4", |
| 54 | + "jsonschema>=2.5,<5", |
| 55 | + "kconfiglib>=14.1,<15", |
| 56 | + "pyyaml>=3,<7", |
| 57 | +] |
| 58 | + |
| 59 | +urls.Documentation = "https://kas.readthedocs.io/" |
| 60 | +urls.Homepage = "https://github.com/siemens/kas" |
| 61 | +urls.Repository = "https://github.com/siemens/kas.git" |
| 62 | +scripts.kas = "kas.kas:main" |
| 63 | + |
| 64 | +[tool.poetry] |
| 65 | +version = "1.0" |
| 66 | + |
| 67 | +[tool.setuptools] |
| 68 | +package-data = { "kas" = [ "*.json" ] } |
| 69 | +script-files = [ "kas-container" ] |
| 70 | + |
| 71 | +[tool.setuptools.packages.find] |
| 72 | +namespaces = false |
3 | 73 |
|
4 | 74 | [tool.pytest.ini_options] |
5 | 75 | markers = [ |
6 | | - "online: tests requiring internet access" |
| 76 | + "online: tests requiring internet access", |
7 | 77 | ] |
8 | 78 | filterwarnings = [ |
9 | | - "error" |
| 79 | + "error", |
10 | 80 | ] |
0 commit comments