diff options
author | shmel1k <shmel1k@ydb.tech> | 2023-11-26 18:16:14 +0300 |
---|---|---|
committer | shmel1k <shmel1k@ydb.tech> | 2023-11-26 18:43:30 +0300 |
commit | b8cf9e88f4c5c64d9406af533d8948deb050d695 (patch) | |
tree | 218eb61fb3c3b96ec08b4d8cdfef383104a87d63 /contrib/python/jsonschema/py2/ya.make | |
parent | 523f645a83a0ec97a0332dbc3863bb354c92a328 (diff) | |
download | ydb-b8cf9e88f4c5c64d9406af533d8948deb050d695.tar.gz |
add kikimr_configure
Diffstat (limited to 'contrib/python/jsonschema/py2/ya.make')
-rw-r--r-- | contrib/python/jsonschema/py2/ya.make | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/contrib/python/jsonschema/py2/ya.make b/contrib/python/jsonschema/py2/ya.make new file mode 100644 index 0000000000..6860467224 --- /dev/null +++ b/contrib/python/jsonschema/py2/ya.make @@ -0,0 +1,51 @@ +# Generated by devtools/yamaker (pypi). + +PY2_LIBRARY() + +VERSION(3.2.0) + +LICENSE(MIT) + +PEERDIR( + contrib/deprecated/python/functools32 + contrib/python/attrs + contrib/python/importlib-metadata + contrib/python/pyrsistent + contrib/python/setuptools + contrib/python/six +) + +NO_LINT() + +PY_SRCS( + TOP_LEVEL + jsonschema/__init__.py + jsonschema/__main__.py + jsonschema/_format.py + jsonschema/_legacy_validators.py + jsonschema/_reflect.py + jsonschema/_types.py + jsonschema/_utils.py + jsonschema/_validators.py + jsonschema/cli.py + jsonschema/compat.py + jsonschema/exceptions.py + jsonschema/validators.py +) + +RESOURCE_FILES( + PREFIX contrib/python/jsonschema/py2/ + .dist-info/METADATA + .dist-info/entry_points.txt + .dist-info/top_level.txt + jsonschema/schemas/draft3.json + jsonschema/schemas/draft4.json + jsonschema/schemas/draft6.json + jsonschema/schemas/draft7.json +) + +END() + +RECURSE_FOR_TESTS( + tests +) |