ya.make 448 B

123456789101112131415161718192021222324252627282930
  1. # NOTE: please do not change to PY23_LIBRARY()
  2. # instead, use
  3. # IF (PYTHON2)
  4. # PEERDIR(contrib/deprecated/python/typing)
  5. # ENDIF()
  6. # for code compatible with both Py2 and Py3
  7. PY2_LIBRARY() # backport
  8. LICENSE(PSF-2.0)
  9. VERSION(3.10.0.0)
  10. NO_LINT()
  11. PY_SRCS(
  12. TOP_LEVEL
  13. typing.py
  14. )
  15. RESOURCE_FILES(
  16. PREFIX contrib/deprecated/python/typing/
  17. .dist-info/METADATA
  18. .dist-info/top_level.txt
  19. )
  20. END()
  21. RECURSE_FOR_TESTS(
  22. test
  23. )