Release 1.0.0

This commit is contained in:
Quentin POLLET
2020-10-21 13:40:23 +02:00
parent c9b8de00c5
commit a4edbd3348
3 changed files with 3 additions and 1 deletions

View File

@ -5,3 +5,4 @@ rm -r .tox
rm -r build
rm -r dist
rm -r python_synology.egg-info
rm -r src/python_synology.egg-info

View File

@ -14,5 +14,6 @@ python3 setup.py sdist bdist_wheel
# Push to PyPi
python3 -m twine upload dist/*
# python3 -m twine upload --repository testpypi dist/*
# Enter credentials manually :P

View File

@ -9,7 +9,7 @@
from setuptools import setup, find_packages
REPO_URL = "https://github.com/ProtoThis/python-synology"
VERSION = "0.9.0"
VERSION = "1.0.0"
with open("requirements.txt") as f:
required = f.read().splitlines()