mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
Fix find_namespace_packages
This commit is contained in:
parent
7b985fd36b
commit
ffec1b2db7
1 changed files with 2 additions and 7 deletions
9
setup.py
9
setup.py
|
|
@ -176,18 +176,13 @@ if __name__ == "__main__":
|
|||
"License :: OSI Approved :: MIT License",
|
||||
],
|
||||
package_dir={"": "src"},
|
||||
packages=setuptools.find_namespace_packages(
|
||||
include=[
|
||||
"debugpy",
|
||||
"debugpy.*",
|
||||
]
|
||||
),
|
||||
packages=setuptools.find_namespace_packages(where="src", include=["debugpy*"]),
|
||||
package_data={
|
||||
"debugpy": ["ThirdPartyNotices.txt"],
|
||||
"debugpy._vendored": [
|
||||
# pydevd extensions must be built before this list can be computed properly,
|
||||
# so it is populated in the overridden build_py.finalize_options().
|
||||
],
|
||||
],
|
||||
},
|
||||
ext_modules=ExtModules(),
|
||||
has_ext_modules=lambda: True,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue