sapling/hgext/extlib/__init__.py
Mark Thomas 2e81565606 fb-hgext: integrate rust libraries and extensions with setup.py
Summary:
Move the rust libraries and extensions to their new locations, and integrate
them with the hg-crew setup.py.

Test Plan: Run `python setup.py build` and verify rust extensions are built.

Reviewers: durham, #mercurial

Reviewed By: durham

Subscribers: fried, jsgf, mitrandir

Differential Revision: https://phabricator.intern.facebook.com/D6677251

Tasks: T24908724

Signature: 6677251:1515450235:920faf40babbce9b09e3283ff9ca328d1c5c51e6
2018-01-08 15:26:24 -08:00

7 lines
245 B
Python

from __future__ import absolute_import
import pkgutil
# Indicate that hgext.native is a namespace package, and other python path
# directories may still be searched for hgext.native libraries.
__path__ = pkgutil.extend_path(__path__, __name__)