Skip to content

Commit df21eb7

Browse files
committed
Hot fix for import issues
1 parent db286f2 commit df21eb7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Date: 2021-06-17
66
'''
77

8-
from setuptools import find_packages, setup
8+
from setuptools import setup, find_namespace_packages
99

1010
# Open readme
1111
with open("README.md", "r", encoding="utf-8") as fh:
@@ -16,7 +16,7 @@
1616

1717
setup(
1818
name = 'jmath',
19-
packages = find_packages(include=['jmath']),
19+
packages = find_namespace_packages(include=['jmath.*']),
2020
version = version,
2121
description = "Mathematics Tools",
2222
long_description = long_description,

0 commit comments

Comments
 (0)