Skip to content

Commit 33d0cf1

Browse files
committed
upgrade version and add entrypoint
1 parent 0cb8211 commit 33d0cf1

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name = "html2excel",
8-
version = "0.0.1",
8+
version = "0.0.2",
99
author = "Neema Tsering",
1010
author_email = "ntvirus333@gmail.com",
1111
description = ("Convert HTML Table to Excel file"),
@@ -14,4 +14,9 @@
1414
install_requires = ['bs4', 'openpyxl'],
1515
license = "MIT",
1616
packages = ["html2excel"],
17+
entry_points = {
18+
"console_scripts": [
19+
"html2excel = __main__:main"
20+
]
21+
}
1722
)

0 commit comments

Comments
 (0)