Skip to content

Commit

Permalink
Fix typo namepace -> namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
pradal committed Jan 22, 2024
1 parent 92161a1 commit 21ad6fc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def getMetaInfo():

globals().update(getMetaInfo())

namepace = 'openalea'
namespace = 'openalea'

# Setup script
version = HexVersion.from_cpp_define('PGL_VERSION',pj('src','cpp','plantgl','version.h')).to_string()
Expand All @@ -35,7 +35,7 @@ def getMetaInfo():
inc_dirs = { 'include' : pj(currentdir, build_prefix, 'include') },
share_dirs = { 'share' : 'share'},
postinstall_scripts = ['pgl_postinstall',],
namespace_packages = [namespace],
#namespace_packages = [namespace],
create_namespaces = False,
)

Expand All @@ -53,7 +53,7 @@ def getMetaInfo():
# pure python packages
#packages = find_namespace_packages(where='src',include=['openalea','openalea.*'])
packages = [
namepace,
namespace,
pkg_name,
pkg_name + '.math',
pkg_name + '.scenegraph',
Expand Down

0 comments on commit 21ad6fc

Please sign in to comment.