Skip to content

Commit

Permalink
Update namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Aurelien Besnier committed Jan 22, 2024
1 parent 9c56b51 commit a828428
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 14 deletions.
4 changes: 2 additions & 2 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 Down
12 changes: 0 additions & 12 deletions src/openalea/__init__.py

This file was deleted.

0 comments on commit a828428

Please sign in to comment.