Skip to content

Commit

Permalink
Merge pull request #34 from openalea/namespace
Browse files Browse the repository at this point in the history
Fix namespace package definition
  • Loading branch information
pradal authored Jan 24, 2024
2 parents 6c1ac85 + b32c623 commit e412d8e
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 e412d8e

Please sign in to comment.