From 0cdbc567bb02c62d7d02b6f5f45b40d19df1b609 Mon Sep 17 00:00:00 2001 From: Biraj Koirala Date: Thu, 13 Feb 2025 18:45:25 +0700 Subject: [PATCH 1/2] Testing pipeline for pushing - Changed setup.py to have more information --- setup.py | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index e398f8b..64c1d2c 100644 --- a/setup.py +++ b/setup.py @@ -1,19 +1,28 @@ -# setup.py at the same level as the 'rupantaran' folder from setuptools import setup, find_packages +import pathlib + +HERE = pathlib.Path(__file__).parent +long_description = (HERE / "README.md").read_text() setup( name="rupantaran", - version="0.2.1", + version="0.2.2", packages=find_packages(), license="MIT", - description="Rupantaran is a Python package that converts various Nepali-specific measurements into SI units or commonly used metric units.", + description="Rupantaran converts Nepali-specific measurements into SI or metric units.", + long_description=long_description, # Adds README content + long_description_content_type="text/markdown", # Specifies format author="BIRAJ KOIRALA", author_email="koiralabiraj@gmail.com", url="https://github.com/biraj094/rupantaran", + project_urls={ # Additional links + "Documentation": "https://github.com/biraj094/rupantaran#readme", + "Source Code": "https://github.com/biraj094/rupantaran", + "Bug Tracker": "https://github.com/biraj094/rupantaran/issues", + }, classifiers=[ "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Operating System :: OS Independent", ], - ) \ No newline at end of file From 9788c0a30e88a952d03c164ddcde5d68227025f3 Mon Sep 17 00:00:00 2001 From: Biraj Koirala Date: Thu, 13 Feb 2025 18:55:27 +0700 Subject: [PATCH 2/2] =?UTF-8?q?Final=20test=20for=20github=20actions=20?= =?UTF-8?q?=C2=B1=20version=200.2.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 64c1d2c..34eb79d 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name="rupantaran", - version="0.2.2", + version="0.2.3", packages=find_packages(), license="MIT", description="Rupantaran converts Nepali-specific measurements into SI or metric units.",