Skip to content

Commit d80df2d

Browse files
committed
fix: add tldr into scripts to publish correctly
1 parent a95ea3b commit d80df2d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,14 @@
55

66
setup(
77
name = 'tldr',
8-
version = "0.1.0",
8+
version = "0.1.1",
99
author = 'Felix Yan',
1010
author_email = 'felixonmars@gmail.com',
1111
url = 'https://github.com/felixonmars/tldr-python-client',
1212
description = 'command line client for tldr',
1313
license = 'MIT',
14-
modules = ['tldr'],
14+
py_modules = ['tldr'],
15+
scripts=['tldr.py'],
1516
install_requires = ['six', 'termcolor'],
1617
entry_points = { 'console_scripts': [ 'tldr = tldr:main' ] },
1718
classifiers = [
@@ -28,4 +29,4 @@
2829
"Topic :: Utilities",
2930
"Topic :: System"
3031
]
31-
)
32+
)

0 commit comments

Comments
 (0)