forked from kernelci/kernelci-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
34 lines (31 loc) · 860 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# 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 = {text = "LGPL-2.1-or-later"}
dependencies = [
"aioredis[hiredis] == 2.0.0",
"cloudevents == 1.9.0",
"fastapi[all] == 0.68.1",
"fastapi-pagination == 0.9.3",
"passlib == 1.7.4",
"pydantic == 1.10.5",
"python-jose[cryptography] == 3.3.0",
"uvicorn[standard] == 0.13.4",
"motor == 2.5.1",
"pymongo-migrate == 0.11.0",
"pyyaml == 5.3.1",
"fastapi-versioning == 0.10.0",
]
[project.urls]
Homepage = "https://kernelci.org"
Documentation = "https://kernelci.org/docs"
Repository = "https://github.com/kernelci/kernelci-api"
[tool.setuptools]
packages = ["api"]