File: pyproject.toml

package info (click to toggle)
python-jsondiff 2.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 228 kB
  • sloc: python: 1,047; makefile: 164; sh: 5
file content (39 lines) | stat: -rw-r--r-- 1,108 bytes parent folder | download
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
[build-system]
requires = ["setuptools>=64.0.0", "setuptools_scm>=8", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "jsondiff"
description = "Diff JSON and JSON-like structures in Python"
dynamic = ["version", "dependencies", "optional-dependencies"]
readme = "README.md"
license= {file = "LICENSE" }
requires-python = ">=3.8"
authors = [
    { name = "Zoomer Analytics LLC", email = "eric.reynolds@zoomeranalytics.com"}
]
keywords = ['json', 'diff', 'diffing', 'difference', 'patch', 'delta', 'dict', 'LCS']
classifiers = [
    'License :: OSI Approved :: MIT License',
    'Programming Language :: Python :: 3',
]

[project.urls]
"Homepage" = "https://github.com/xlwings/jsondiff"
"Bug Tracker" = "https://github.com/xlwings/jsondiff/issues"

[project.scripts]
jdiff = "jsondiff.cli:main"

[tool.setuptools.packages.find]
include = ["jsondiff*"]
exclude = ["tests*"]

[tool.setuptools.dynamic]
dependencies = {file=["requirements.txt"]}

[tool.setuptools_scm]
version_file = "jsondiff/_version.py"

[tool.setuptools.dynamic.optional-dependencies]
dev = {file=["requirements-dev.txt"]}