Skip to content

Commit 238236f

Browse files
authored
Merge pull request #11 from biraj094/feature
Version 0.2.3
2 parents 925aa05 + 9788c0a commit 238236f

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

setup.py

+13-4
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,28 @@
1-
# setup.py at the same level as the 'rupantaran' folder
21
from setuptools import setup, find_packages
2+
import pathlib
3+
4+
HERE = pathlib.Path(__file__).parent
5+
long_description = (HERE / "README.md").read_text()
36

47
setup(
58
name="rupantaran",
6-
version="0.2.1",
9+
version="0.2.3",
710
packages=find_packages(),
811
license="MIT",
9-
description="Rupantaran is a Python package that converts various Nepali-specific measurements into SI units or commonly used metric units.",
12+
description="Rupantaran converts Nepali-specific measurements into SI or metric units.",
13+
long_description=long_description, # Adds README content
14+
long_description_content_type="text/markdown", # Specifies format
1015
author="BIRAJ KOIRALA",
1116
author_email="koiralabiraj@gmail.com",
1217
url="https://github.com/biraj094/rupantaran",
18+
project_urls={ # Additional links
19+
"Documentation": "https://github.com/biraj094/rupantaran#readme",
20+
"Source Code": "https://github.com/biraj094/rupantaran",
21+
"Bug Tracker": "https://github.com/biraj094/rupantaran/issues",
22+
},
1323
classifiers=[
1424
"License :: OSI Approved :: MIT License",
1525
"Programming Language :: Python :: 3",
1626
"Operating System :: OS Independent",
1727
],
18-
1928
)

0 commit comments

Comments
 (0)