-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
52 lines (44 loc) · 1.51 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
[tool.poetry]
name = "fast-json-pointer"
version = "0.0.0" # See github workflow, version tags pulled automatically from git
description = "Implements RFC 6901 JSON pointers, and json-schema draft relative pointer resolution."
authors = ["Tristan Sweeney <[email protected]>"]
repository = "https://github.com/SlowAPI/py-json-pointer"
documentation = "https://py-json-pointer.readthedocs.io/en/latest/"
readme = "README.rst"
keywords = ["json", "json-pointer", "rfc", "rfc 6901"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
packages = [
{ include = "fast_json_pointer", from="src" },
]
[tool.poetry.scripts]
fjp = {callable = "fast_json_pointer.cli:app", extras = ["cli"] }
[tool.poetry.dependencies]
python = "^3.11"
typer = {version = "^0.7.0", optional = true, extras = ["all"]}
[tool.poetry.dev-dependencies]
black = "^22.10.0"
isort = "^5.10.1"
mypy = "^0.991"
Sphinx = "^5.3.0"
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
[tool.poetry.extras]
cli = ["typer"]
[tool.poetry.group.dev.dependencies]
sphinx-toolbox = "^3.2.0"
build = "^0.9.0"
mypy = "^0.991"
flake8 = "^6.0.0"
pylint = "^2.15.9"
[tool.pytest.ini_options]
doctest_optionflags = ["NORMALIZE_WHITESPACE", "IGNORE_EXCEPTION_DETAIL"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"