Skip to content

Commit

Permalink
pyproject.toml: add initial file
Browse files Browse the repository at this point in the history
Add an initial pyproject.toml file to be able to build and install the
api Python package.

Signed-off-by: Guillaume Tucker <[email protected]>
  • Loading branch information
gctucker committed Aug 29, 2023
1 parent 5fb6819 commit 1399800
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# SPDX-License-Identifier: LGPL-2.1-or-later
#
# Copyright (C) 2023 Collabora Limited
# Author: Guillaume Tucker <[email protected]>

[project]
name = "kernelci-api"
version = "0"
description = "KernelCI API"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "COPYING"}

[project.urls]
Homepage = "https://kernelci.org"
Documentation = "https://kernelci.org/docs"
Repository = "https://github.com/kernelci/kernelci-api"

[tool.setuptools]
packages = ["api"]

0 comments on commit 1399800

Please sign in to comment.