Skip to content

Commit

Permalink
Makes nupic a namespace package that other projects can extend.
Browse files Browse the repository at this point in the history
  • Loading branch information
scottpurdy committed Jul 28, 2015
1 parent 1830fdf commit c0c5cd8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nupic/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ----------------------------------------------------------------------
# Numenta Platform for Intelligent Computing (NuPIC)
# Copyright (C) 2013, Numenta, Inc. Unless you have an agreement
# Copyright (C) 2013-2015, Numenta, Inc. Unless you have an agreement
# with Numenta, Inc., for a separate license for this software code, the
# following terms and conditions apply:
#
Expand All @@ -19,4 +19,4 @@
# http://numenta.org/licenses/
# ----------------------------------------------------------------------

__version__ = "0.2.7.dev0"
__import__('pkg_resources').declare_namespace(__name__)
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -637,6 +637,7 @@ def postProcess():
name="nupic",
version=getVersion(),
install_requires=findRequirements(),
namespace_packages=["nupic"],
packages=find_packages(),
package_data={
"nupic.support": ["nupic-default.xml",
Expand Down

0 comments on commit c0c5cd8

Please sign in to comment.