diff --git a/README.rst b/README.rst index cc719ea4..627a4ba2 100644 --- a/README.rst +++ b/README.rst @@ -53,11 +53,11 @@ Installation ~~~~~~~~~~~~ * At a CLI prompt, and in a suitable directory, - `download the latest release `_ + `download the latest release `_ in ``tar.gz`` format and extract it, renaming the top-level directory in the archive to ``mapmaker``:: - $ curl -L https://github.com/AnatomicMaps/flatmap-maker/archive/refs/tags/v1.10.5.tar.gz \ - | tar xz -s /v1.10.5.tar.gz/mapmaker/ + $ curl -L https://github.com/AnatomicMaps/flatmap-maker/archive/refs/tags/v1.10.6.tar.gz \ + | tar xz -s /v1.10.6.tar.gz/mapmaker/ Setup the environment diff --git a/mapmaker/__version__.py b/mapmaker/__version__.py index 9b655287..8a6a6759 100644 --- a/mapmaker/__version__.py +++ b/mapmaker/__version__.py @@ -18,6 +18,6 @@ # #=============================================================================== -__version__ = '1.10.5' +__version__ = '1.10.6' #=============================================================================== diff --git a/pyproject.toml b/pyproject.toml index 467696d1..11df7f31 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "mapmaker" -version = "1.10.5" +version = "1.10.6" description = "" authors = ["David Brooks "] include = ["mapmaker/output/data_mapping.json", "resources/*"] @@ -31,6 +31,7 @@ cssselect2 = "^0.6.0" webcolors = "^1.12" xmltodict = "^0.12.0" flatmapknowledge = {url="https://github.com/AnatomicMaps/flatmap-knowledge/releases/download/v1.8.1/flatmapknowledge-1.8.1-py3-none-any.whl"} +#flatmapknowledge = { path = "../flatmap-knowledge", develop = true } Pyomo = "^6.2" svgwrite = "^1.4.3" XlsxWriter = "^3.0.3" @@ -58,6 +59,14 @@ optional = true torch = "^2.1.1" sentence-transformers = "^2.2.2" +[tool.poetry.group.dev.dependencies] +attribution = "^1.7.1" + +[tool.attribution] +name = "mapmaker" +package = "mapmaker" +version_file = true + [tool.poetry.scripts] mapmaker = 'mapmaker.__main__:main'