Skip to content
Snippets Groups Projects
Commit 5bc10132 authored by jkerdreu's avatar jkerdreu
Browse files

Fix setuptools wrong namespaces

git-svn-id: https://redmine.imt-atlantique.fr/svn/xaal/code/Python/branches/fork@1621 b32b6428-25c9-4566-ad07-03861ab6144f
parent 29b6259f
Branches
No related tags found
No related merge requests found
Showing with 21 additions and 70 deletions
from setuptools import setup
from setuptools import setup,find_packages
with open('README.rst') as f:
long_description = f.read()
......@@ -20,8 +20,7 @@ setup(
],
keywords=['xaal', 'metadata'],
platforms='any',
packages=["xaal.metadb",],
namespace_packages=["xaal"],
packages=find_packages(),
include_package_data=True,
install_requires=[
'xaal.lib',
......
# this is a namespace package
try:
import pkg_resources
pkg_resources.declare_namespace(__name__)
except ImportError:
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
from setuptools import setup
from setuptools import setup,find_packages
with open('README.rst') as f:
long_description = f.read()
......@@ -20,8 +20,7 @@ setup(
],
keywords=['xaal', 'mqtt'],
platforms='any',
packages=["xaal.mqttlogger",],
namespace_packages=["xaal"],
packages=find_packages(),
include_package_data=True,
install_requires=[
'xaal.lib',
......
# this is a namespace package
try:
import pkg_resources
pkg_resources.declare_namespace(__name__)
except ImportError:
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
from setuptools import setup
from setuptools import setup,find_packages
with open('README.rst') as f:
......@@ -21,8 +21,7 @@ setup(
],
keywords=['xaal', 'rf433'],
platforms='any',
packages=["xaal.hq433",],
namespace_packages=["xaal"],
packages=find_packages(),
include_package_data=True,
install_requires=[
'xaal.lib',
......
# this is a namespace package
try:
import pkg_resources
pkg_resources.declare_namespace(__name__)
except ImportError:
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
from setuptools import setup
from setuptools import setup,find_packages
with open('README.rst') as f:
......@@ -21,8 +21,7 @@ setup(
],
keywords=['xaal', 'ipx-800'],
platforms='any',
packages=["xaal.ipx800",],
namespace_packages=["xaal"],
packages=find_packages(),
include_package_data=True,
install_requires=[
'xaal.lib',
......
# this is a namespace package
try:
import pkg_resources
pkg_resources.declare_namespace(__name__)
except ImportError:
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
from setuptools import setup
from setuptools import setup,find_packages
with open('README.rst') as f:
......@@ -21,8 +21,7 @@ setup(
],
keywords=['xaal', 'bugone','RFM12','Wireless','Sensor'],
platforms='any',
packages=["xaal.bugone",],
namespace_packages=["xaal"],
packages=find_packages(),
include_package_data=True,
install_requires=[
'xaal.lib',
......
# this is a namespace package
try:
import pkg_resources
pkg_resources.declare_namespace(__name__)
except ImportError:
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
from setuptools import setup
from setuptools import setup,find_packages
with open('README.rst') as f:
long_description = f.read()
......@@ -20,8 +20,7 @@ setup(
],
keywords=['xaal', 'lmsensors'],
platforms='any',
packages=["xaal.lmsensors",],
namespace_packages=["xaal"],
packages=find_packages(),
include_package_data=True,
install_requires=[
'xaal.lib',
......
# this is a namespace package
try:
import pkg_resources
pkg_resources.declare_namespace(__name__)
except ImportError:
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
from setuptools import setup
from setuptools import setup,find_packages
with open('README.rst') as f:
long_description = f.read()
......@@ -20,8 +20,7 @@ setup(
],
keywords=['xaal', 'own','weather'],
platforms='any',
packages=["xaal.owm",],
namespace_packages=["xaal"],
packages=find_packages(),
include_package_data=True,
install_requires=[
'xaal.lib',
......
# this is a namespace package
try:
import pkg_resources
pkg_resources.declare_namespace(__name__)
except ImportError:
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment