-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
67 lines (56 loc) · 1.08 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
62
63
64
65
66
67
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "emrichen"
dynamic = ["version"]
description = "Template engine for YAML & JSON"
readme = "README.md"
license = "MIT"
requires-python = ">=3.7"
authors = [
{ name = "Santtu Pajukanta", email = "santtu@pajukanta.fi" },
]
dependencies = [
"jsonpath-rw~=1.4.0",
"PyYAML",
]
[project.optional-dependencies]
lint = [
"black==23.3.0",
"mypy~=1.2.0",
"ruff==0.0.265",
]
test = [
"pytest-cov~=2.0",
"pytest~=6.2.3",
]
[project.scripts]
emrichen = "emrichen.__main__:main"
[project.urls]
Homepage = "http://github.com/con2/emrichen"
[tool.hatch.version]
path = "emrichen/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/emrichen",
]
[tool.ruff]
target-version = "py37"
ignore = ["E501"]
select = [
"E",
"F",
"I",
"UP",
"W",
]
[tool.black]
line-length = 105
skip-string-normalization = true
[[tool.mypy.overrides]]
module = "jsonpath_rw.*"
ignore_missing_imports = true
[tool.pytest.ini_options]
addopts = ["--verbose"]
python_files = "tests/*.py"