forked from xlwings/jsondiff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (25 loc) · 928 Bytes
/
pyproject.toml
File metadata and controls
28 lines (25 loc) · 928 Bytes
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
[tool.poetry]
name = "ujsondiff"
version = "3.0.1"
description = "Diff JSON and JSON-like structures in Python"
authors = ["BP Greyling <bpgreyling@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/CrispyCrafter/ujsondiff"
repository = "https://github.com/CrispyCrafter/ujsondiff"
keywords=['json', 'diff', 'diffing', 'difference', 'patch', 'delta', 'dict', 'LCS', 'micropython']
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: Implementation :: MicroPython",
'Programming Language :: Python :: 3',
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.group.dev.dependencies]
hypothesis = "^6.61.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"