-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (68 loc) · 1.38 KB
/
Copy pathpyproject.toml
File metadata and controls
79 lines (68 loc) · 1.38 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
[project]
name = "makeapp"
dynamic = ["version"]
description = "Simplifies routine Python application development processes."
authors = [
{ name = "Igor Starikov", email = "idlesign@yandex.ru" }
]
readme = "README.md"
license = "BSD-3-Clause"
license-files = ["LICENSE"]
requires-python = ">=3.11"
keywords = ["scaffolding", "development"]
dependencies = [
"requests",
"click",
"jinja2~=3.1",
"pyyaml",
]
[project.urls]
Homepage = "https://github.com/idlesign/makeapp"
Documentation = "https://makeapp.readthedocs.io/"
[project.scripts]
makeapp = "makeapp.cli:main"
ma = "makeapp.cli:main"
[dependency-groups]
dev = [
{include-group = "docs"},
{include-group = "linters"},
{include-group = "tests"},
]
docs = [
"mkdocs-material",
"mkdocs-navsorted-plugin",
]
linters = [
]
tests = [
"pytest",
"pytest-datafixtures",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/makeapp/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/makeapp"]
[tool.hatch.build.targets.sdist]
packages = ["src/"]
[tool.pytest.ini_options]
testpaths = [
"tests",
]
[tool.coverage.run]
source = [
"src/",
]
omit = [
"*/app_templates/*",
"*/license_templates/*",
"*/cli.py",
]
[tool.coverage.report]
fail_under = 90.00
exclude_also = [
"raise NotImplementedError",
"if TYPE_CHECKING:",
]