-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed setup.py under package dir, which was checked in by mistake.
- Loading branch information
Showing
5 changed files
with
9 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -165,6 +165,6 @@ | |
from .ui import set_theme, NoSpace | ||
|
||
__all__ = ['Pick', 'Group', 'NoSpace', 'set_theme'] | ||
__version__ = '0.2.0' | ||
__version__ = '0.2.1' | ||
__license__ = 'GPLv3+' | ||
__author__ = 'Huan Xiong <[email protected]>' |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,11 +22,11 @@ def run_tests(self): | |
|
||
setuptools.setup( | ||
name='pypick', | ||
version='0.2.0', | ||
version='0.2.1', | ||
author='Huan Xiong', | ||
author_email='[email protected]', | ||
description=('A module for selecting an item from a list of ' | ||
'multi-field data in terminal'), | ||
description=('A module for selecting an item from a multi-field ' | ||
'data list in terminal'), | ||
packages=['pypick'], | ||
url='https://github.com/rayx/pypick', | ||
license='GPLv3+', | ||
|