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 1f486c2 commit 8a387c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
version = _version["__version__"]

# find packages
pkgs = find_namespace_packages('src', include=['openalea', 'openalea.*'])
pkgs = find_namespace_packages('src', include=['openalea.*'])

setup_kwds = dict(
name='openalea.core',
Expand All @@ -33,7 +33,7 @@
zip_safe=False,

packages=pkgs,
namespace_packages=['openalea'],
#namespace_packages=['openalea'],
package_dir={'': 'src'},
package_data = {'openalea.core' : ['*.txt'],},
include_package_data = True,
Expand Down

0 comments on commit 8a387c3

Please sign in to comment.