aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/deprecated/python/typing/ya.make
diff options
context:
space:
mode:
authornkozlovskiy <nmk@ydb.tech>2023-10-02 18:57:38 +0300
committernkozlovskiy <nmk@ydb.tech>2023-10-02 19:39:06 +0300
commit6295ef4d23465c11296e898b9dc4524ad9592b5d (patch)
treefc0c852877b2c52f365a1f6ed0710955844338c2 /contrib/deprecated/python/typing/ya.make
parentde63c80b75948ecc13894854514d147840ff8430 (diff)
downloadydb-6295ef4d23465c11296e898b9dc4524ad9592b5d.tar.gz
oss ydb: fix dstool building and test run
Diffstat (limited to 'contrib/deprecated/python/typing/ya.make')
-rw-r--r--contrib/deprecated/python/typing/ya.make30
1 files changed, 30 insertions, 0 deletions
diff --git a/contrib/deprecated/python/typing/ya.make b/contrib/deprecated/python/typing/ya.make
new file mode 100644
index 0000000000..5259779f65
--- /dev/null
+++ b/contrib/deprecated/python/typing/ya.make
@@ -0,0 +1,30 @@
+# NOTE: please do not change to PY23_LIBRARY()
+# instead, use
+# IF (PYTHON2)
+# PEERDIR(contrib/deprecated/python/typing)
+# ENDIF()
+# for code compatible with both Py2 and Py3
+PY2_LIBRARY() # backport
+
+LICENSE(PSF-2.0)
+
+VERSION(3.10.0.0)
+
+NO_LINT()
+
+PY_SRCS(
+ TOP_LEVEL
+ typing.py
+)
+
+RESOURCE_FILES(
+ PREFIX contrib/deprecated/python/typing/
+ .dist-info/METADATA
+ .dist-info/top_level.txt
+)
+
+END()
+
+RECURSE_FOR_TESTS(
+ test
+)