-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
66 lines (59 loc) · 1.76 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
[build-system]
requires = ["setuptools>=61.0.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "jtree"
version = "0.2.7"
description = "jtree is a command line interface (CLI) for displaying JavaScript Object Notation (JSON) in a tree view"
readme = "README.md"
authors = [
{ name = "Oleksis Fraga Menéndez", email = "[email protected]" },
]
urls.Homepage = "https://github.com/oleksis/jtree"
urls.Tracker = "https://github.com/oleksis/jtree/issues"
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["json", "terminal", "tui", "tool", "explorer", "viewer"]
requires-python = ">=3.7"
dependencies = ["textual >= 0.11.0"]
optional-dependencies.dev = [
"bumpver",
"pip-tools",
"pipdeptree",
"debugpy",
"check-manifest",
"check-wheel-contents",
'tomli >= 1.1.0 ; python_version < "3.11"',
"tox",
]
optional-dependencies.format = ["black", "isort"]
optional-dependencies.test = ["pytest"]
optional-dependencies.ci = ["tox"]
scripts.jtree = "jtree.__main__:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["jtree*"]
exclude = ["jtree.tests*"]
[tool.bumpver]
current_version = "0.2.7"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = ['current_version = "{version}"', 'version = "{version}"']
"jtree/__init__.py" = ["{version}"]
[tool.black]
includes = "jtree"
[tool.isort]
profile = "black"
src_paths = ["jtree", "tests"]
[tool.check-wheel-contents]
toplevel = ["jtree"]