From 348c966470c5c25d4791d7170c2837e712349c42 Mon Sep 17 00:00:00 2001 From: RonaldsonBellande Date: Fri, 22 Nov 2024 21:01:31 -0500 Subject: [PATCH] latest pushes --- Package/python/publish.sh | 2 ++ Package/python/setup.py | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) 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",