Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 0.2.3 #11

Merged
merged 3 commits into from
Feb 13, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 13 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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",
],

)