-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
78 lines (67 loc) · 1.73 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
68
69
70
71
72
73
74
75
76
77
78
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pjy"
dynamic = ["version"]
description = "pjy - command-line JSON processor"
readme = "README.rst"
license = "WTFPL"
requires-python = ">=3"
keywords = [
"filter",
"jq",
"json",
"processor",
"query",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: Public Domain",
"Topic :: Utilities",
"Topic :: Text Processing :: Filters",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[[project.authors]]
name = "Hg"
email = "dev@indigo.re"
[project.optional-dependencies]
pygments = [
"pygments",
]
[project.scripts]
pjy = "pjy:main"
[project.urls]
Project = "https://gitlab.com/hydrargyrum/pjy"
[tool.hatch.version]
path = "pjy.py"
[tool.hatch.build.targets.sdist]
include = [
"/pjy.py",
"/zsh/_pjy",
]
[tool.hatch.build.targets.wheel.shared-data]
"README.rst" = "share/doc/pjy/README.rst"
"zsh/_pjy" = "share/zsh/site-functions/_pjy"
[tool.hatch.envs.default]
dependencies = [
"pytest",
]
[tool.hatch.envs.default.scripts]
test = "pytest"
[tool.pytest.ini_options]
python_files = ["test.py"]