We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 05e67c6 + 6e89f41 commit 7e327a1Copy full SHA for 7e327a1
2 files changed
pybigtools/pybigtools/__init__.py
@@ -1,9 +1,10 @@
1
# ruff: noqa: F403
2
# ruff: noqa: F405
3
# This is here to make sure that source installs with pip work correctly
4
+from pybigtools.pybigtools import *
5
+from pybigtools import pybigtools as bt
6
-from .pybigtools import *
-
7
-__doc__ = pybigtools.__doc__
8
-if hasattr(pybigtools, "__all__"):
9
- __all__ = pybigtools.__all__
+__doc__ = bt.__doc__
+if hasattr(bt, "__all__"):
+ __all__ = bt.__all__
10
+del bt
pybigtools/pyproject.toml
@@ -41,3 +41,6 @@ dev = [
41
homepage = "https://github.com/jackh726/bigtools"
42
documentation = "https://bigtools.readthedocs.io"
43
repository = "https://github.com/jackh726/bigtools"
44
+
45
+[tool.maturin]
46
+python-source = "pybigtools"
0 commit comments