-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Docs, cleanup, and re-named plugin examples from Printer to PrintIt t…
…o prevent accidentally installing a package on PyPI called printer.
- Loading branch information
1 parent
3449769
commit 236503d
Showing
27 changed files
with
169 additions
and
146 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Authors | ||
======= | ||
|
||
Kevin Wurster <[email protected]> | ||
Sean Gillies <[email protected]> |
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 |
---|---|---|
@@ -1,7 +1,8 @@ | ||
Changelog | ||
========= | ||
|
||
1.0 - ? | ||
------- | ||
|
||
1.0 - 2015-07-20 | ||
---------------- | ||
|
||
Initial release. |
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
include AUTHORS.txt | ||
include CHANGES.txt | ||
include LICENSE.txt | ||
include MANIFEST.in | ||
include README.md | ||
include setup.py | ||
include README.rst | ||
recursive-include tests *.py |
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 |
---|---|---|
|
@@ -26,8 +26,8 @@ def subcommand(arg): | |
|
||
__version__ = '1.0' | ||
__author__ = 'Kevin Wurster, Sean Gillies' | ||
__email__ = '[email protected]' | ||
__source__ = 'https://github.com/geowurster/click_plugins' | ||
__email__ = '[email protected], [email protected]' | ||
__source__ = 'https://github.com/click-contrib/click-plugins' | ||
__license__ = ''' | ||
New BSD License | ||
|
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
PrintIt | ||
======= | ||
|
||
This represents a core package with a CLI that registers external plugins. All | ||
it does is print stuff. |
File renamed without changes.
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
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
PrintItBold | ||
=========== | ||
|
||
This plugin should add bold styling to ``PrintIt`` but there is a typo in the | ||
entry point section of the ``setup.py`` that prevents the plugin from loading. |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
""" | ||
A CLI plugin for `PrintIt` that adds bold text. | ||
""" |
2 changes: 1 addition & 1 deletion
2
example/PrinterBold/printer_bold/core.py → example/PrintItBold/printit_bold/core.py
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
""" | ||
Add bold styling to `printer` | ||
Add bold styling to `printit` | ||
""" | ||
|
||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/usr/bin/env python | ||
|
||
|
||
""" | ||
Setup script for `PrintItBold` | ||
""" | ||
|
||
|
||
from setuptools import setup | ||
|
||
|
||
setup( | ||
name='PrintItBold', | ||
version='0.1dev0', | ||
packages=['printit_bold'], | ||
entry_points=''' | ||
[printit.plugins] | ||
bold=printit_bold.core:bolddddddddddd | ||
''' | ||
) |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
PrintItStyle | ||
============ | ||
|
||
A plugin for ``PrintIt`` that adds commands for text styling. |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
""" | ||
A CLI plugin for `PrintIt` that adds styling options. | ||
""" |
2 changes: 1 addition & 1 deletion
2
example/PrinterStyle/printer_style/core.py → example/PrintItStyle/printit_style/core.py
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
""" | ||
Core components for printer_style | ||
Core components for `PrintItStyle` | ||
""" | ||
|
||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/usr/bin/env python | ||
|
||
|
||
""" | ||
Setup script for `PrintItStyle` | ||
""" | ||
|
||
|
||
from setuptools import setup | ||
|
||
|
||
setup( | ||
name='PrintItStyle', | ||
version='0.1dev0', | ||
packages=['printit_style'], | ||
entry_points=''' | ||
[printit.plugins] | ||
background=printit_style.core:background | ||
color=printit_style.core:color | ||
''' | ||
) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.