Skip to content

Commit c0167ce

Browse files
committed
fix(packaging): remove pkg_resources namespace stuff
Currently poetry is not packaging the actual modules with the build. Its due to the pkg_resources line in __init__ This is odd and really not necessary, unless it is
1 parent f3ee15c commit c0167ce

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

intuitlib/__init__.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
try:
16-
import pkg_resources
17-
pkg_resources.declare_namespace(__name__)
18-
except ImportError:
19-
import pkgutil
20-
__path__ = pkgutil.extend_path(__path__, __name__)
2115

0 commit comments

Comments
 (0)