forked from exiorrealty/jetpack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 861 Bytes
/
pyproject.toml
File metadata and controls
43 lines (39 loc) · 861 Bytes
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
[project]
name = "jetpack"
version = "0.2.1"
description = "Project Utilities to kickstart a micro-service."
readme = "README.md"
authors = [
{ name = "Faizan Azim", email = "faizanazim11@gmail.com" },
{ name = "Irfanuddin Shafi Ahmed", email = "irfanuddinshafi@gmail.com" },
]
requires-python = ">=3.13"
dependencies = [
"asgi-correlation-id>=4.3.4",
"orjson>=3.11.4",
"pydantic>=2.10.3",
"pydantic-settings>=2.7.0",
"whenever>=0.6.15",
]
[project.optional-dependencies]
apis = [
"fastapi>=0.115.6",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pre-commit>=4.0.1",
"pytest>=8.3.4",
"pytest-cov>=7.0.0",
"ruff>=0.8.3",
]
[tool.coverage.run]
omit = [
"*/tests/*",
"*/scripts/constants/*",
"*/scripts/db/*",
"app.py",
"main.py",
]