Skip to content

Commit

Permalink
Dependencies update.
Browse files Browse the repository at this point in the history
  • Loading branch information
iwatkot committed Nov 12, 2024
1 parent ffbae01 commit 1714dea
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 6 deletions.
3 changes: 2 additions & 1 deletion docker/Dockerfile_bot
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ RUN apt-get update && apt-get install -y \

WORKDIR /usr/src/app

COPY . .
COPY data /usr/src/app/data
COPY bot /usr/src/app/bot

RUN pip install -r docker/requirements_bot.txt

Expand Down
3 changes: 2 additions & 1 deletion docker/Dockerfile_webui
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ RUN apt-get update && apt-get install -y \

WORKDIR /usr/src/app

COPY . .
COPY data /usr/src/app/data
COPY webui /usr/src/app/webui

RUN pip install -r docker/requirements_webui.txt

Expand Down
10 changes: 6 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "maps4fs"
version = "0.6.0"
version = "0.6.1"
description = "Generate map templates for Farming Simulator from real places."
authors = [{name = "iwatkot", email = "iwatkot@gmail.com"}]
license = {text = "MIT License"}
Expand All @@ -17,9 +17,11 @@ classifiers = [
"Operating System :: OS Independent",
]
dependencies = [
"pydantic>=2.0.0",
"requests>=2.0.0",
"httpx>=0.20.0",
"opencv-python",
"osmnx<2.0.0",
"rasterio",
"python_dotenv",
"tqdm",
]

[project.urls]
Expand Down
6 changes: 6 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
opencv-python
osmnx<2.0.0
rasterio
python_dotenv
tqdm
streamlit

0 comments on commit 1714dea

Please sign in to comment.