Skip to content

Commit 69d752f

Browse files
authored
fix(packaging): remove pkg_resources namespace stuff (#16)
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
2 parents f3ee15c + c0167ce commit 69d752f

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)