diff --git a/scripts/clean.sh b/scripts/clean.sh index 4c4325e1..f5ee09e8 100755 --- a/scripts/clean.sh +++ b/scripts/clean.sh @@ -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 diff --git a/scripts/publish.sh b/scripts/publish.sh index c0f3ff51..7e370c81 100755 --- a/scripts/publish.sh +++ b/scripts/publish.sh @@ -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 diff --git a/setup.py b/setup.py index c0df8fbc..64483b39 100644 --- a/setup.py +++ b/setup.py @@ -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()