[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
|
||||
COPY ./py/pyproject.toml .
|
||||
COPY ./py/poetry.lock .
|
||||
COPY ./py/README.md .
|
||||
RUN poetry install
|
||||
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"
|
||||
version = "0.1.0"
|
||||
description = "Address parser API"
|
||||
authors = ["EmCasa Developer <dev@emcasa.com>"]
|
||||
authors = [{ name = "EmCasa Developer", email = "dev@emcasa.com>" }]
|
||||
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]
|
||||
python = "^3.12"
|
||||
postal = "^1.1.10"
|
||||
pynest-api = "^0.1.2"
|
||||
[tool.poetry]
|
||||
package-mode = false
|
||||
|
||||
[tool.poetry.group.dev.dependencies]
|
||||
ipython = "^8.20.0"
|
||||
pytest = "^7.4.4"
|
||||
black = "^23.11.0"
|
||||
ipython = "^9.2.0"
|
||||
pytest = "^8.3.5"
|
||||
black = "^25.1.0"
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core"]
|
||||
|
Loading…
x
Reference in New Issue
Block a user