Skip to content

Commit

Permalink
Release 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Quentame committed Apr 16, 2020
1 parent e393b12 commit 6f77082
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Store the ``device_token`` property so that you do not need to reconnect with pa


Code exemple
------
------------

.. code-block:: python
Expand Down
18 changes: 18 additions & 0 deletions scripts/publish.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Publish the library
# https://pypi.org/project/python-synology
# Publish documentation here: https://packaging.python.org/tutorials/packaging-projects/

./scripts/common.sh
./scripts/clean.sh

# Install/update dependencies
python3 -m pip install --user --upgrade setuptools wheel
python3 -m pip install --user --upgrade twine

# Build
python3 setup.py sdist bdist_wheel

# Push to PyPi
python3 -m twine upload dist/*

# Enter credentials manually :P
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from codecs import open

REPO_URL = "https://github.com/ProtoThis/python-synology"
VERSION = "0.5.0"
VERSION = "0.6.0"

with open("requirements.txt") as f:
required = f.read().splitlines()
Expand Down

0 comments on commit 6f77082

Please sign in to comment.