diff options
author | vitalyisaev <vitalyisaev@ydb.tech> | 2023-11-30 13:26:22 +0300 |
---|---|---|
committer | vitalyisaev <vitalyisaev@ydb.tech> | 2023-11-30 15:44:45 +0300 |
commit | 0a98fece5a9b54f16afeb3a94b3eb3105e9c3962 (patch) | |
tree | 291d72dbd7e9865399f668c84d11ed86fb190bbf /contrib/python/python-libarchive/py3/ya.make | |
parent | cb2c8d75065e5b3c47094067cb4aa407d4813298 (diff) | |
download | ydb-0a98fece5a9b54f16afeb3a94b3eb3105e9c3962.tar.gz |
YQ Connector:Use docker-compose in integrational tests
Diffstat (limited to 'contrib/python/python-libarchive/py3/ya.make')
-rw-r--r-- | contrib/python/python-libarchive/py3/ya.make | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/contrib/python/python-libarchive/py3/ya.make b/contrib/python/python-libarchive/py3/ya.make new file mode 100644 index 0000000000..a905f47a12 --- /dev/null +++ b/contrib/python/python-libarchive/py3/ya.make @@ -0,0 +1,28 @@ +PY3_LIBRARY() + +LICENSE(BSD-3-Clause) + +VERSION(3.1.2.post1) + +PEERDIR( + contrib/libs/libarchive + contrib/python/contextlib2 + contrib/python/six +) + +ADDINCL( + contrib/libs/libarchive/libarchive +) + +NO_LINT() + +PY_SRCS( + SWIG_C + TOP_LEVEL + libarchive/__init__.py + libarchive/tar.py + libarchive/zip.py + libarchive/_libarchive.swg +) + +END() |