ya.make 454 B

1234567891011121314151617181920212223242526272829303132
  1. PY2_LIBRARY()
  2. NO_WSHADOW()
  3. PEERDIR(
  4. contrib/tools/python/lib
  5. library/cpp/resource
  6. )
  7. CFLAGS(-DCYTHON_REGISTER_ABCS=0)
  8. NO_PYTHON_INCLUDES()
  9. PY_SRCS(
  10. entry_points.py
  11. TOP_LEVEL
  12. __res.pyx
  13. sitecustomize.pyx
  14. )
  15. IF (CYTHON_COVERAGE)
  16. # Let covarage support add all needed files to resources
  17. ELSE()
  18. RESOURCE_FILES(
  19. PREFIX ${MODDIR}/
  20. __res.pyx
  21. importer.pxi
  22. sitecustomize.pyx
  23. )
  24. ENDIF()
  25. END()