Skip to content

Commit

Permalink
Merge pull request #42 from SCAI-BIO/imports
Browse files Browse the repository at this point in the history
Fix: DB path in API routes
  • Loading branch information
tiadams authored Jun 10, 2024
2 parents 8e1d87b + d80f78f commit 10f3e4b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion datastew/api/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from datastew.visualisation import get_html_plot_for_current_database_state

logger = logging.getLogger("uvicorn.info")
repository = SQLLiteRepository(path="index/db/index.db")
repository = SQLLiteRepository(path="datastew/db/index.db")
embedding_model = MPNetAdapter()
db_plot_html = None

Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,9 @@
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
include_package_data=True, # Ensure non-Python files are included
)

0 comments on commit 10f3e4b

Please sign in to comment.