-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (78 loc) · 1.9 KB
/
pyproject.toml
File metadata and controls
87 lines (78 loc) · 1.9 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "appkernel"
version = "2.0.0"
description = "An easy to use API framework."
readme = "README.md"
license = { text = "Apache 2.0" }
authors = [{ name = "thingsplode" }]
requires-python = ">=3.12"
keywords = [
"microservice", "fastapi", "motor", "serverless", "rest",
"serialisation", "orm", "mongo", "api", "rest api",
]
classifiers = [
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: POSIX",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"anyio",
"aiohttp",
"babel",
"bcrypt>=4.0",
"cryptography",
"fastapi>=0.100",
"httpx",
"jsonschema",
"motor>=3.3,<4.0",
"pyjwt>=2.0",
"python-multipart",
"pyyaml",
"simplejson",
"uvicorn[standard]>=0.20",
"wrapt",
]
[project.optional-dependencies]
docs = [
"sphinx>=7.0",
"sphinx-rtd-theme>=2.0",
"recommonmark>=0.7",
]
dev = [
"autopep8",
"codecov",
"flake8",
"passlib[bcrypt]>=1.7.4",
"py-moneyed",
"pylint",
"pytest>=8.0",
"pytest-anyio",
"pytest-cov",
"pyupgrade",
"respx",
]
[project.urls]
Homepage = "https://github.com/accelero-cloud/"
[project.entry-points."babel.extractors"]
model_messages = "appkernel.util:extract_model_messages"
[tool.setuptools.packages.find]
exclude = ["contrib", "docs", "tests*"]
[tool.setuptools.package-data]
"*" = ["cfg.yml", "*.json"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--cov=appkernel --cov-report=term-missing --cov-report=html --cov-fail-under=80"
[tool.coverage.run]
source = ["appkernel"]
branch = true
omit = ["tests/*", "spec/*"]
[tool.coverage.report]
show_missing = true
skip_covered = false