Skip to content

Commit

Permalink
Merge pull request #65 from pradal/namespace
Browse files Browse the repository at this point in the history
Update namespace
  • Loading branch information
pradal authored Jan 23, 2024
2 parents 25e712c + 3b0648b commit 820b08b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
10 changes: 4 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
# -*- coding: utf-8 -*-
__revision__ = "$Id$"

import os, sys
from setuptools import setup, find_packages
from setuptools import setup, find_namespace_packages

pj= os.path.join
version ='2.3.2'
release = '2.3'
version ='2.4.0'
release = '2.4'

name = 'OpenAlea.SConsX'
project = 'openalea'
Expand All @@ -31,7 +30,7 @@
* Support for different compilers on Linux and Windows (e.g. gcc, msvc, mingw)
"""

packages=find_packages('src')
packages=find_namespace_packages(where='src', include=['openalea.*'])
package_dir={'': 'src'}

setup(name = name,
Expand All @@ -42,7 +41,6 @@
author_email = authors_email,
license = license,

#namespace_packages = ['openalea'],
zip_safe = False,

packages=packages,
Expand Down
3 changes: 0 additions & 3 deletions src/openalea/__init__.py

This file was deleted.

0 comments on commit 820b08b

Please sign in to comment.