-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (54 loc) · 1.09 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
60
61
[build-system]
requires = ["setuptools>=63.0"]
build-backend = "setuptools.build_meta"
[project]
name = "tasker"
version = "4.0"
dynamic = ["readme"]
description = ""
license = {text = "OSL-3.0"}
authors = []
requires-python = ">=3.11"
dependencies = [
"pymongo<4.6",
"pydantic-settings<2.1",
"litestar[jinja]<2.2",
"uvicorn<0.24"
]
[project.optional-dependencies]
test = [
"black<23.10",
"mypy<1.6",
"pytest<7.5",
"pytest-cov<4.2",
]
[project.scripts]
tasker = "command:main"
#[project.gui-scripts]
#tasker-ui = "gui"
[tool.setuptools.packages.find]
include = ["tasker"]
[tool.setuptools.dynamic]
#version = {attr = "tasker.VERSION"}
readme = {file = ["README.md"]}
[tool.black]
line-length = 120
target-version = ['py311']
include = '\.pyi?$'
[tool.mypy]
ignore_missing_imports = true
warn_no_return = false
warn_return_any = false
follow_imports = "skip"
strict_optional = true
exclude = [
"^build/"
]
[tool.pytest.ini_options]
cache_dir = "/tmp/cache"
[tool.coverage.run]
branch = true
omit = ["tests/*"]
[tool.coverage.report]
skip_empty = true
show_missing = true