File tree 1 file changed +13
-4
lines changed
1 file changed +13
-4
lines changed Original file line number Diff line number Diff line change 1
- # setup.py at the same level as the 'rupantaran' folder
2
1
from setuptools import setup , find_packages
2
+ import pathlib
3
+
4
+ HERE = pathlib .Path (__file__ ).parent
5
+ long_description = (HERE / "README.md" ).read_text ()
3
6
4
7
setup (
5
8
name = "rupantaran" ,
6
- version = "0.2.1 " ,
9
+ version = "0.2.3 " ,
7
10
packages = find_packages (),
8
11
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
10
15
author = "BIRAJ KOIRALA" ,
11
16
author_email = "koiralabiraj@gmail.com" ,
12
17
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
+ },
13
23
classifiers = [
14
24
"License :: OSI Approved :: MIT License" ,
15
25
"Programming Language :: Python :: 3" ,
16
26
"Operating System :: OS Independent" ,
17
27
],
18
-
19
28
)
You can’t perform that action at this time.
0 commit comments