Fix package structure

This commit is contained in:
Trinh Anh Ngoc
2020-03-22 10:27:48 +07:00
parent 8fa2b0f257
commit 33ecc1ac0e
6 changed files with 2 additions and 6 deletions

View File

@@ -1 +0,0 @@
from . import pydevd_plugins

View File

@@ -1,5 +0,0 @@
try:
__import__('pkg_resources').declare_namespace(__name__)
except ImportError:
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)

View File

@@ -8,6 +8,8 @@ setup(
author='Trinh Anh Ngoc', author='Trinh Anh Ngoc',
author_email='atw1990@gmail.com', author_email='atw1990@gmail.com',
packages=find_packages(), packages=find_packages(),
namespace_packages=['pydevd_plugins.extensions'],
license='MIT', license='MIT',
long_description=open('README.md').read(), long_description=open('README.md').read(),
long_description_content_type='text/markdown'
) )