diff --git a/setup.py b/setup.py index e398f8b..34eb79d 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.3", 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