-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpyproject.toml
57 lines (52 loc) · 1.44 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
[tool.poetry]
name = "warlock"
version = "2.0.1"
description = "Python object model built on JSON schema and JSON patch."
readme = "README.md"
authors = ["Brian Waldon <bcwaldon@gmail.com>"]
maintainers = ["Jan Willhaus <mail@janwillhaus.de>"]
homepage = "http://github.com/bcwaldon/warlock"
repository = "http://github.com/bcwaldon/warlock"
license = "Apache-2.0"
keywords=["JSON schema", "JSON patch", "model validation"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
]
packages = [
{ include = "warlock" },
]
[tool.poetry.dependencies]
python = "^3.7"
jsonschema = "^4"
jsonpatch = "^1"
[tool.poetry.dev-dependencies]
pytest = "^6.0"
pytest-cov = "^3.0"
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
| \.git
| \.venv
| venv
| __pycache__
)/
'''
[tool.isort]
known_third_party = ["jsonpatch","jsonschema"]
known_first_party=["warlock"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"