diff --git a/Package/python/publish.sh b/Package/python/publish.sh index 48934a9..64ae1ac 100755 --- a/Package/python/publish.sh +++ b/Package/python/publish.sh @@ -1,2 +1,4 @@ +cp ../../README.md ./ python setup.py sdist twine upload dist/* +rm -r ./README.md diff --git a/Package/python/setup.py b/Package/python/setup.py index 2b2c275..2726924 100644 --- a/Package/python/setup.py +++ b/Package/python/setup.py @@ -1,11 +1,11 @@ from setuptools import setup, find_packages -with open("../../README.md", "r", encoding="utf-8") as fh: +with open("./README.md", "r", encoding="utf-8") as fh: long_description = fh.read() setup( name="bellande_limit", - version="0.1.1", + version="0.1.2", description="Robots Limit", long_description=long_description, long_description_content_type="text/markdown",