We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a95ea3b commit d80df2dCopy full SHA for d80df2d
setup.py
@@ -5,13 +5,14 @@
5
6
setup(
7
name = 'tldr',
8
- version = "0.1.0",
+ version = "0.1.1",
9
author = 'Felix Yan',
10
author_email = 'felixonmars@gmail.com',
11
url = 'https://github.com/felixonmars/tldr-python-client',
12
description = 'command line client for tldr',
13
license = 'MIT',
14
- modules = ['tldr'],
+ py_modules = ['tldr'],
15
+ scripts=['tldr.py'],
16
install_requires = ['six', 'termcolor'],
17
entry_points = { 'console_scripts': [ 'tldr = tldr:main' ] },
18
classifiers = [
@@ -28,4 +29,4 @@
28
29
"Topic :: Utilities",
30
"Topic :: System"
31
]
-)
32
+)
0 commit comments