Skip to content

Commit

Permalink
Fixing namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Aurelien Besnier committed Jan 26, 2024
1 parent 6deb7d6 commit 5e6a973
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
# ==============================================================================
import numpy
from Cython.Build import cythonize
from setuptools import setup, find_packages, Extension, Command
from setuptools import setup, find_namespace_packages, Extension
# ==============================================================================

namespace = "openalea"
pkg_root_dir = 'src'
packages = [pkg for pkg in find_packages(pkg_root_dir)]
packages = find_namespace_packages(where='src', include=['openalea', 'openalea.*'])
top_pkgs = [pkg for pkg in packages if len(pkg.split('.')) <= 2]
package_dir = dict([('', pkg_root_dir)] +
[(pkg, pkg_root_dir + "/" + pkg.replace('.', '/'))
Expand All @@ -45,7 +45,7 @@

setup(
name="openalea.phenomenal",
version="1.8.1",
version="1.9.0",
description="",
long_description="",

Expand Down Expand Up @@ -76,4 +76,4 @@

# See MANIFEST.in
include_package_data=True,
)
)

0 comments on commit 5e6a973

Please sign in to comment.