(self, ext)
| 6 | |
| 7 | class CopyBuild(build_ext): |
| 8 | def build_extension(self, ext): |
| 9 | mkpath(self.build_lib) |
| 10 | copy_file(ext.sources[0], self.get_ext_fullpath(ext.name)) |
| 11 | |
| 12 | # How to build and upload package to Yandex PyPI can be found here: https://wiki.yandex-team.ru/pypi/ |
| 13 | # Before building and uploading _hnsw.so should be built from 'hnsw' folder like this: |