[WIP] Implement server to parse address #1
@ -63,6 +63,7 @@ RUN ln -s /usr/local/lib/libpostal.so.1.0.1 /usr/local/lib/libpostal.so.1 \
|
|||||||
WORKDIR /opt/src/app
|
WORKDIR /opt/src/app
|
||||||
COPY ./py/pyproject.toml .
|
COPY ./py/pyproject.toml .
|
||||||
COPY ./py/poetry.lock .
|
COPY ./py/poetry.lock .
|
||||||
|
COPY ./py/README.md .
|
||||||
RUN poetry install
|
RUN poetry install
|
||||||
COPY ./py .
|
COPY ./py .
|
||||||
|
|
||||||
|
0
py/README.md
Normal file
0
py/README.md
Normal file
874
py/poetry.lock
generated
874
py/poetry.lock
generated
File diff suppressed because it is too large
Load Diff
@ -1,19 +1,22 @@
|
|||||||
[tool.poetry]
|
[project]
|
||||||
name = "addressex"
|
name = "addressex"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
description = "Address parser API"
|
description = "Address parser API"
|
||||||
authors = ["EmCasa Developer <dev@emcasa.com>"]
|
authors = [{ name = "EmCasa Developer", email = "dev@emcasa.com>" }]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
requires-python = ">=3.13,<4.0"
|
||||||
|
dependencies = [
|
||||||
|
"postal>=1.1.10",
|
||||||
|
"pynest-api>=0.3.0,<1.0.0"
|
||||||
|
]
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry]
|
||||||
python = "^3.12"
|
package-mode = false
|
||||||
postal = "^1.1.10"
|
|
||||||
pynest-api = "^0.1.2"
|
|
||||||
|
|
||||||
[tool.poetry.group.dev.dependencies]
|
[tool.poetry.group.dev.dependencies]
|
||||||
ipython = "^8.20.0"
|
ipython = "^9.2.0"
|
||||||
pytest = "^7.4.4"
|
pytest = "^8.3.5"
|
||||||
black = "^23.11.0"
|
black = "^25.1.0"
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["poetry-core"]
|
requires = ["poetry-core"]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user