Skip to content

Commit

Permalink
Fix namespace package definition
Browse files Browse the repository at this point in the history
  • Loading branch information
pradal committed Jan 23, 2024
1 parent 6c1ac85 commit b32c623
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@

version = _version["__version__"]

packages=find_namespace_packages(where='src', include=['openalea.*'])

setup_kwds = dict(
name='openalea.mtg',
version=version,
Expand All @@ -32,7 +34,7 @@
keywords=['OpenAlea', 'MTG', 'Plant Architecture', 'Tree Graph'],
zip_safe=False,

packages=find_namespace_packages(where='src', include=['openalea', 'openalea.*']),
packages=packages,
package_dir={'': 'src'},
entry_points={},
)
Expand Down

0 comments on commit b32c623

Please sign in to comment.