-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (55 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
60 lines (55 loc) · 1.32 KB
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
60
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "luki-api-gateway"
version = "0.1.0"
description = "Unified HTTP interface for the LUKi agent & modules"
readme = "README.md"
authors = [
{name = "LUKi Development Team", email = "dev@remelife.com"}
]
license = {text = "Apache-2.0"}
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.68.0",
"uvicorn>=0.15.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"httpx>=0.23.0",
"cryptography>=44.0.1",
"python-jose>=3.4.0",
"slowapi>=0.1.5",
"redis>=4.5.0"
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0.0",
"black>=22.0.0",
"flake8>=5.0.0",
"mypy>=1.0.0"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["luki_api*"]
[tool.setuptools.package-data]
luki_api = ["py.typed"]
[tool.pytest.ini_options]
minversion = "7.0"
addopts = [
"-ra",
"--strict-markers"
]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
asyncio_mode = "auto"
markers = [
"integration: marks tests as integration tests",
"unit: marks tests as unit tests",
"slow: marks tests as slow running",
"asyncio: marks tests as async"
]