forked from kernelci/kernelci-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
59 lines (54 loc) · 1.45 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# SPDX-License-Identifier: LGPL-2.1-or-later
#
# Copyright (C) 2023, 2024 Collabora Limited
# Author: Guillaume Tucker <[email protected]>
# Author: Jeny Sadadia <[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 = [
"cloudevents == 1.9.0",
"fastapi[all] == 0.115.0",
"fastapi-pagination == 0.12.30",
"fastapi-users[beanie, oauth] == 13.0.0",
"fastapi-versioning == 0.10.0",
"MarkupSafe == 2.0.1",
"motor == 3.6.0",
"pymongo == 4.9.0",
"passlib == 1.7.4",
"pydantic == 2.9.2",
"pymongo-migrate == 0.11.0",
"python-jose[cryptography] == 3.3.0",
"redis == 5.0.1",
"uvicorn[standard] == 0.29.0",
]
[project.optional-dependencies]
tests = [
"fakeredis == 2.20.0",
"pytest == 6.2.5",
"pytest-asyncio == 0.16.0",
"pytest-dependency == 0.5.1",
"pytest-mock == 3.6.1",
"pytest-order == 1.0.1",
"httpx == 0.23.3",
"mongomock_motor == 0.0.21",
]
dev = [
"kernelci-api[tests]",
"pycodestyle == 2.8.0",
"pylint == 3.1.0",
]
[project.urls]
Homepage = "https://kernelci.org"
Documentation = "https://docs.kernelci.org"
Repository = "https://github.com/kernelci/kernelci-api"
[tool.setuptools]
packages = ["api", "scripts", "api.templates", "migrations"]
[tool.setuptools.package-data]
scripts = ["*"]
"api.templates" = ["*.jinja2", "*.html", "*.png"]
migrations = ["*.py"]