Skip to content

Commit 896008f

Browse files
committed
Update Readme
1 parent c12098b commit 896008f

3 files changed

Lines changed: 11 additions & 6 deletions

File tree

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# PythonInquirer
22

3-
A collection of common interactive command line user interfaces. It is originally called [whaaaaaat](https://github.com/finklabs/whaaaaat) created by **finklabs**, but due to bad naming and in need of fixes, I decided to rename and apply some necessary fixes on it. I'll also carry out the author's TODO.
3+
A collection of common interactive command line user interfaces. It is originally called [whaaaaaat](https://github.com/finklabs/whaaaaat) created by **finklabs**, but due to bad naming and in need of fixes, I decided to rename and apply some necessary fixes on it. The reason is because I needed it for a tool that can be install through PyPI. I need to rewrite it for my own need. But don't worry any new fix on the main Repo, will be added to it if needed. Lastly, I am currently working on the author's TODO.
44

55
## Table of Contents
66

@@ -220,6 +220,10 @@ Yes, you can contribute to this.
220220
## License
221221
<a name="license"></a>
222222

223-
Copyright (c) 2018
224-
Oyetoke Toby (twitter: @oyetokeT)
223+
Since I am not the owner, it all goes to Finklab
224+
225+
Copyright (c) 2016-2017 Mark Fink (twitter: @markfink)
226+
227+
Copyright (c) 2018 Oyetoke Toby (twitter: @oyetokeT)
228+
225229
Licensed under the MIT license.

examples/checkbox.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
questions = [
2424
{
2525
'type': 'checkbox',
26-
'qmark': '[?]',
26+
'qmark': '😃',
2727
'message': 'Select toppings',
2828
'name': 'toppings',
2929
'choices': [

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
setup(
2525
name='PyInquirer',
26-
version='1.0.0',
26+
version='1.0.1',
2727
description=(
2828
'A Python module for collection of common interactive command line user interfaces,'
2929
' based on Inquirer.js'
@@ -48,7 +48,8 @@
4848
packages=find_packages(exclude=['docs', 'tests*']),
4949
include_package_data=True,
5050
author='Oyetoke Toby',
51+
download_url='https://github.com/CITGuru/PyInquirer/archive/1.0.0.tar.gz',
5152
install_requires=install_requires,
5253
dependency_links=dependency_links,
53-
author_email='oyetoketoby80@gmail.com'
54+
author_email='oyetoketoby80@gmail.com',
5455
)

0 commit comments

Comments
 (0)