You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sdap.apache.org by rk...@apache.org on 2024/02/29 15:30:07 UTC

(incubator-sdap-nexus) 04/07: Revert "poetry lock & pyproject toml"

This is an automated email from the ASF dual-hosted git repository.

rkk pushed a commit to branch SDAP-511-b
in repository https://gitbox.apache.org/repos/asf/incubator-sdap-nexus.git

commit d67b026655a3e41edb4f6d073681e20ad66faa8f
Author: rileykk <ri...@jpl.nasa.gov>
AuthorDate: Thu Feb 29 07:28:03 2024 -0800

    Revert "poetry lock & pyproject toml"
    
    This reverts commit 150dea389c5de8f299ff0a6e909272c3258fb51f.
---
 analysis/webservice/webapp.py | 3 +++
 pyproject.toml                | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/analysis/webservice/webapp.py b/analysis/webservice/webapp.py
index f0da8d9..01250e0 100644
--- a/analysis/webservice/webapp.py
+++ b/analysis/webservice/webapp.py
@@ -23,6 +23,9 @@ import tornado.web
 from tornado.routing import Rule, RuleRouter, AnyMatches
 from tornado.options import define, options, parse_command_line
 
+from webservice.redirect import RemoteCollectionMatcher
+from webservice.nexus_tornado.app_builders import NexusAppBuilder
+from webservice.nexus_tornado.app_builders import RedirectAppBuilder
 from analysis.webservice.redirect import RemoteCollectionMatcher
 from analysis.webservice.nexus_tornado.app_builders import NexusAppBuilder
 from analysis.webservice.nexus_tornado.app_builders import RedirectAppBuilder
diff --git a/pyproject.toml b/pyproject.toml
index 12837f2..0add807 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -7,7 +7,7 @@ license = "Apache-2.0"
 readme = "README.md"
 packages = [
     { include = "analysis/webservice" },
-    { include = "nexustiles", from = "data-access" }
+    { include = "data-access/nexustiles" }
 ]
 repository = "https://github.com/apache/incubator-sdap-nexus"
 exclude = ["docs", "tests"]