diff --git a/dev-requirements.in b/dev-requirements.in deleted file mode 100644 index 6031d10..0000000 --- a/dev-requirements.in +++ /dev/null @@ -1,2 +0,0 @@ -# TODO move this to pypi once it's deployed ---editable ../e84-geoai-common diff --git a/pyproject.toml b/pyproject.toml index 4dab9f7..064efde 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,9 +12,7 @@ readme = "README.md" requires-python = ">=3.10" license = { file = "LICENSE" } dependencies = [ - # TODO once it's in pypi enable this - # "e84-geoai-common>=0.0.1" - + "e84-geoai-common>=0.0.1", "requests>=2.32.3" ] dynamic = ["version"] diff --git a/requirements.txt b/requirements.txt index 99cdedb..89125bd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,5 @@ # This file was autogenerated by uv via the following command: -# uv pip compile --refresh --all-extras pyproject.toml dev-requirements.in -o requirements.txt --e ../e84-geoai-common - # via -r dev-requirements.in +# uv pip compile --refresh --all-extras pyproject.toml -o requirements.txt altair==5.4.1 # via streamlit annotated-types==0.7.0 @@ -54,6 +52,8 @@ decorator==5.1.1 # via ipython distlib==0.3.8 # via virtualenv +e84-geoai-common==0.0.1 + # via natural-language-geocoding (pyproject.toml) exceptiongroup==1.2.2 # via # ipython diff --git a/scripts/refresh_requirements.sh b/scripts/refresh_requirements.sh index e27152a..77c86fa 100755 --- a/scripts/refresh_requirements.sh +++ b/scripts/refresh_requirements.sh @@ -12,7 +12,6 @@ uv pip compile \ --refresh \ --all-extras \ pyproject.toml \ - dev-requirements.in \ -o requirements.txt uv venv diff --git a/scripts/run_demo.sh b/scripts/run_demo.sh index 2795477..a334642 100755 --- a/scripts/run_demo.sh +++ b/scripts/run_demo.sh @@ -10,4 +10,4 @@ if [[ -f .env ]]; then source .env fi -PYTHONPATH=src PYTHONPATH=src streamlit run streamlit_app.py +PYTHONPATH=src streamlit run src/natural_language_geocoding_demo/app.py