Skip to content

Commit

Permalink
fix setuptools changes
Browse files Browse the repository at this point in the history
  • Loading branch information
stynoo committed Oct 20, 2024
1 parent 81365e0 commit 445a35b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ RUN mkdir -p /src
COPY . /src

RUN cd /src && \
pip install -e .
pip install .

ENTRYPOINT ["withings-sync"]
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def read(fname):
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
],
install_requires=["lxml", "requests", "garth>=0.4.32", "setuptools", "python-dotenv"],
install_requires=["lxml", "requests", "garth>=0.4.32", "python-dotenv"],
entry_points={
"console_scripts": ["withings-sync=withings_sync.sync:main"],
},
Expand Down

0 comments on commit 445a35b

Please sign in to comment.