Skip to content

Commit

Permalink
Convert pybigtools to a mixed Rust/Python project to ensure that sour…
Browse files Browse the repository at this point in the history
…ce builds with pip behave correctly
  • Loading branch information
jackh726 committed Nov 27, 2024
1 parent 4c53900 commit ca8ee99
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pybigtools/pybigtools/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# This is here to make sure that source installs with pip work correctly

from .pybigtools import *

__doc__ = pybigtools.__doc__
if hasattr(pybigtools, "__all__"):
__all__ = pybigtools.__all__

0 comments on commit ca8ee99

Please sign in to comment.