]> git.openstreetmap.org Git - nominatim.git/blobdiff - packaging/nominatim-api/pyproject.toml
release 4.5.0.post3
[nominatim.git] / packaging / nominatim-api / pyproject.toml
index 7e9230e4047b8a58fa52cff1250377cfa36a9d46..42eb93fcfbaf9e166e05a4e287d9155d6c868a65 100644 (file)
@@ -1,11 +1,13 @@
 [project]
 name = "nominatim-api"
+version = "4.5.0.post3"
 description = "A tool for building a database of OpenStreetMap for geocoding and for searching the database. Search library."
 readme = "README.md"
 requires-python = ">=3.7"
 license = 'GPL-3.0-or-later'
 maintainers = [
-  { name = "Sarah Hoffmann", email = "lonvia@denofr.de" }
+  { name = "Sarah Hoffmann", email = "lonvia@denofr.de" },
+  { name = "Marc Tobias", email = "mtmail-cpan@gmx.net" }
 ]
 keywords = [ "geocoding", "OpenStreetMap", "search" ]
 classifiers = [
@@ -14,32 +16,46 @@ classifiers = [
     "Operating System :: OS Independent",
 ]
 dependencies = [
-    "nominatim-core",
-    "SQLAlchemy>=1.4.31",
-    "psycopg",
-    "PyICU"
+    "python-dotenv==1.0.1",
+    "pyYAML==6.0.2",
+    "SQLAlchemy==2.0.36",
+    "psycopg[binary]==3.2.3",
+    "PyICU==2.14",
+    "falcon==4.0.2",
+    "uvicorn==0.32.0",
+    "gunicorn==23.0.0"
 ]
-dynamic = ["version"]
 
 [project.urls]
 Homepage = "https://nominatim.org"
+Documentation = "https://nominatim.org/release-docs/latest/"
 Issues = "https://github.com/osm-search/Nominatim/issues"
+Repository = "https://github.com/osm-search/Nominatim"
 
 [build-system]
 requires = ["hatchling"]
 build-backend = "hatchling.build"
 
 [tool.hatch.version]
-source = "code"
-path = "../../src/nominatim_api/version.py"
-expression = "NOMINATIM_API_VERSION"
+path = "src/nominatim_api/version.py"
+pattern = "NOMINATIM_API_VERSION = '(?P<version>[^']+)'"
 
-[tool.hatch.build.targets.sdist.force-include]
-"../../src/nominatim_db" = "nominatim_api"
+[tool.hatch.build.targets.sdist]
+include = [
+    "src/nominatim_api",
+    "src/nominatim_db/config.py",
+    "settings",
+    "extra_src/paths.py"
+]
 
-[tool.hatch.build.targets.sdist.sources]
-"src/nominatim_core" = "nominatim_api"
+exclude = [
+  "src/nominatim_api/config.py"
+]
 
 [tool.hatch.build.targets.wheel]
-packages = ["nominatim_api"]
+packages = ["src/nominatim_api"]
 
+[tool.hatch.build.targets.wheel.force-include]
+"src/nominatim_db/config.py" = "nominatim_api/config.py"
+"extra_src/paths.py" = "nominatim_api/paths.py"
+"settings" = "nominatim_api/resources/settings"