From 17d1ed53d06fa89c249cd500c755fdcfeb117639 Mon Sep 17 00:00:00 2001 From: Tony Etienne Date: Tue, 4 Apr 2017 15:57:24 -0700 Subject: [PATCH] update to fix cpu 100% bug see https://github.com/deanishe/alfred-workflow/issues/111 --- .../PKG-INFO | 169 +++++++++++++++++ .../SOURCES.txt | 18 ++ .../dependency_links.txt | 1 + .../installed-files.txt | 21 +++ .../not-zip-safe | 1 + .../top_level.txt | 0 .../DESCRIPTION.rst | 150 ---------------- Alfred_Workflow-1.25.1.dist-info/INSTALLER | 1 - Alfred_Workflow-1.25.1.dist-info/METADATA | 170 ------------------ Alfred_Workflow-1.25.1.dist-info/RECORD | 23 --- Alfred_Workflow-1.25.1.dist-info/WHEEL | 5 - .../metadata.json | 1 - 12 files changed, 210 insertions(+), 350 deletions(-) create mode 100644 Alfred_Workflow-1.25.1-py2.7.egg-info/PKG-INFO create mode 100644 Alfred_Workflow-1.25.1-py2.7.egg-info/SOURCES.txt create mode 100644 Alfred_Workflow-1.25.1-py2.7.egg-info/dependency_links.txt create mode 100644 Alfred_Workflow-1.25.1-py2.7.egg-info/installed-files.txt create mode 100644 Alfred_Workflow-1.25.1-py2.7.egg-info/not-zip-safe rename {Alfred_Workflow-1.25.1.dist-info => Alfred_Workflow-1.25.1-py2.7.egg-info}/top_level.txt (100%) delete mode 100644 Alfred_Workflow-1.25.1.dist-info/DESCRIPTION.rst delete mode 100644 Alfred_Workflow-1.25.1.dist-info/INSTALLER delete mode 100644 Alfred_Workflow-1.25.1.dist-info/METADATA delete mode 100644 Alfred_Workflow-1.25.1.dist-info/RECORD delete mode 100644 Alfred_Workflow-1.25.1.dist-info/WHEEL delete mode 100644 Alfred_Workflow-1.25.1.dist-info/metadata.json diff --git a/Alfred_Workflow-1.25.1-py2.7.egg-info/PKG-INFO b/Alfred_Workflow-1.25.1-py2.7.egg-info/PKG-INFO new file mode 100644 index 0000000..3adf308 --- /dev/null +++ b/Alfred_Workflow-1.25.1-py2.7.egg-info/PKG-INFO @@ -0,0 +1,169 @@ +Metadata-Version: 1.1 +Name: Alfred-Workflow +Version: 1.25.1 +Summary: Full-featured helper library for writing Alfred 2/3 workflows +Home-page: http://www.deanishe.net/alfred-workflow/ +Author: Dean Jackson +Author-email: deanishe@deanishe.net +License: UNKNOWN +Description: + A helper library for writing `Alfred 2 and 3`_ workflows. + + Supports OS X 10.6+ and Python 2.6 and 2.7 (Alfred 3 is 10.9+/2.7 only). + + Alfred-Workflow is designed to take the grunt work out of writing a workflow. + + It gives you the tools to create a fast and featureful Alfred workflow from an API, application or library in minutes. + + http://www.deanishe.net/alfred-workflow/ + + + Features + ======== + + * Catches and logs workflow errors for easier development and support + * "Magic" arguments to help development/debugging + * Auto-saves settings + * Super-simple data caching + * Fuzzy, Alfred-like search/filtering with diacritic folding + * Keychain support for secure storage (and syncing) of passwords, API keys etc. + * Simple generation of Alfred feedback (XML output) + * Input/output decoding for handling non-ASCII text + * Lightweight web API with modelled on `requests`_ + * Pre-configured logging + * Painlessly add directories to ``sys.path`` + * Easily launch background tasks (daemons) to keep your workflow responsive + * Check for new versions and update workflows hosted on GitHub. + * Post notifications via Notification Center. + + + Alfred 3-only features + ---------------------- + + * Set `workflow variables`_ from code + * Advanced modifiers + * Alfred 3-only updates (won't break Alfred 2 installs) + * Re-running Script Filters + + + Quick Example + ============= + + Here's how to show recent `Pinboard.in `_ posts + in Alfred. + + Create a new workflow in Alfred's preferences. Add a **Script Filter** with + Language ``/usr/bin/python`` and paste the following into the **Script** + field (changing ``API_KEY``): + + + .. code-block:: python + + import sys + from workflow import Workflow, ICON_WEB, web + + API_KEY = 'your-pinboard-api-key' + + def main(wf): + url = 'https://api.pinboard.in/v1/posts/recent' + params = dict(auth_token=API_KEY, count=20, format='json') + r = web.get(url, params) + r.raise_for_status() + for post in r.json()['posts']: + wf.add_item(post['description'], post['href'], arg=post['href'], + uid=post['hash'], valid=True, icon=ICON_WEB) + wf.send_feedback() + + + if __name__ == u"__main__": + wf = Workflow() + sys.exit(wf.run(main)) + + + Add an **Open URL** action to your workflow with ``{query}`` as the **URL**, + connect your **Script Filter** to it, and you can now hit **ENTER** on a + Pinboard item in Alfred to open it in your browser. + + + Installation + ============ + + **Note**: If you intend to distribute your workflow to other users, you + should include Alfred-Workflow (and other Python libraries your workflow + requires) within your workflow's directory as described below. **Do not** + ask users to install anything into their system Python. Python installations + cannot support multiple versions of the same library, so if you rely on + globally-installed libraries, the chances are very good that your workflow + will sooner or later break—or be broken by—some other software doing the + same naughty thing. + + + With pip + -------- + + You can install Alfred-Workflow directly into your workflow with:: + + # from within your workflow directory + pip install --target=. Alfred-Workflow + + You can install any other library available on the `Cheese Shop`_ the + same way. See the `pip documentation`_ for more information. + + + From source + ----------- + + Download the ``alfred-workflow-X.X.X.zip`` file from the `GitHub releases`_ page + and extract the ZIP to the root directory of your workflow (where + ``info.plist`` is). + + Alternatively, you can download `the source code`_ from the `GitHub repository`_ + and copy the ``workflow`` subfolder to the root directory of your workflow. + + Your workflow directory should look something like this (where + ``yourscript.py`` contains your workflow code and ``info.plist`` is + the workflow information file generated by Alfred):: + + Your Workflow/ + info.plist + icon.png + workflow/ + __init__.py + background.py + notify.py + Notify.tgz + update.py + version + web.py + workflow.py + yourscript.py + etc. + + + Documentation + ============= + + Detailed documentation, including a tutorial, is available at + http://www.deanishe.net/alfred-workflow/. + + .. _v2 branch: https://github.com/deanishe/alfred-workflow/tree/v2 + .. _requests: http://docs.python-requests.org/en/latest/ + .. _Alfred 2 and 3: http://www.alfredapp.com/ + .. _GitHub releases: https://github.com/deanishe/alfred-workflow/releases + .. _the source code: https://github.com/deanishe/alfred-workflow/archive/master.zip + .. _GitHub repository: https://github.com/deanishe/alfred-workflow + .. _Cheese Shop: https://pypi.python.org/pypi + .. _pip documentation: https://pip.pypa.io/en/latest/ + .. _workflow variables: http://www.deanishe.net/alfred-workflow/user-manual/workflow-variables.html + +Keywords: alfred workflow +Platform: UNKNOWN +Classifier: Development Status :: 5 - Production/Stable +Classifier: License :: OSI Approved :: MIT License +Classifier: Operating System :: MacOS :: MacOS X +Classifier: Intended Audience :: Developers +Classifier: Natural Language :: English +Classifier: Programming Language :: Python :: 2.6 +Classifier: Programming Language :: Python :: 2.7 +Classifier: Topic :: Software Development :: Libraries +Classifier: Topic :: Software Development :: Libraries :: Application Frameworks diff --git a/Alfred_Workflow-1.25.1-py2.7.egg-info/SOURCES.txt b/Alfred_Workflow-1.25.1-py2.7.egg-info/SOURCES.txt new file mode 100644 index 0000000..4b281a5 --- /dev/null +++ b/Alfred_Workflow-1.25.1-py2.7.egg-info/SOURCES.txt @@ -0,0 +1,18 @@ +MANIFEST.in +README_PYPI.rst +setup.cfg +setup.py +Alfred_Workflow.egg-info/PKG-INFO +Alfred_Workflow.egg-info/SOURCES.txt +Alfred_Workflow.egg-info/dependency_links.txt +Alfred_Workflow.egg-info/not-zip-safe +Alfred_Workflow.egg-info/top_level.txt +workflow/Notify.tgz +workflow/__init__.py +workflow/background.py +workflow/notify.py +workflow/update.py +workflow/version +workflow/web.py +workflow/workflow.py +workflow/workflow3.py \ No newline at end of file diff --git a/Alfred_Workflow-1.25.1-py2.7.egg-info/dependency_links.txt b/Alfred_Workflow-1.25.1-py2.7.egg-info/dependency_links.txt new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/Alfred_Workflow-1.25.1-py2.7.egg-info/dependency_links.txt @@ -0,0 +1 @@ + diff --git a/Alfred_Workflow-1.25.1-py2.7.egg-info/installed-files.txt b/Alfred_Workflow-1.25.1-py2.7.egg-info/installed-files.txt new file mode 100644 index 0000000..b541e92 --- /dev/null +++ b/Alfred_Workflow-1.25.1-py2.7.egg-info/installed-files.txt @@ -0,0 +1,21 @@ +../workflow/__init__.py +../workflow/background.py +../workflow/notify.py +../workflow/update.py +../workflow/web.py +../workflow/workflow.py +../workflow/workflow3.py +../workflow/Notify.tgz +../workflow/version +../workflow/__init__.pyc +../workflow/background.pyc +../workflow/notify.pyc +../workflow/update.pyc +../workflow/web.pyc +../workflow/workflow.pyc +../workflow/workflow3.pyc +dependency_links.txt +not-zip-safe +PKG-INFO +SOURCES.txt +top_level.txt diff --git a/Alfred_Workflow-1.25.1-py2.7.egg-info/not-zip-safe b/Alfred_Workflow-1.25.1-py2.7.egg-info/not-zip-safe new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/Alfred_Workflow-1.25.1-py2.7.egg-info/not-zip-safe @@ -0,0 +1 @@ + diff --git a/Alfred_Workflow-1.25.1.dist-info/top_level.txt b/Alfred_Workflow-1.25.1-py2.7.egg-info/top_level.txt similarity index 100% rename from Alfred_Workflow-1.25.1.dist-info/top_level.txt rename to Alfred_Workflow-1.25.1-py2.7.egg-info/top_level.txt diff --git a/Alfred_Workflow-1.25.1.dist-info/DESCRIPTION.rst b/Alfred_Workflow-1.25.1.dist-info/DESCRIPTION.rst deleted file mode 100644 index bc09a56..0000000 --- a/Alfred_Workflow-1.25.1.dist-info/DESCRIPTION.rst +++ /dev/null @@ -1,150 +0,0 @@ -A helper library for writing `Alfred 2 and 3`_ workflows. - -Supports OS X 10.6+ and Python 2.6 and 2.7 (Alfred 3 is 10.9+/2.7 only). - -Alfred-Workflow is designed to take the grunt work out of writing a workflow. - -It gives you the tools to create a fast and featureful Alfred workflow from an API, application or library in minutes. - -http://www.deanishe.net/alfred-workflow/ - - -Features -======== - -* Catches and logs workflow errors for easier development and support -* "Magic" arguments to help development/debugging -* Auto-saves settings -* Super-simple data caching -* Fuzzy, Alfred-like search/filtering with diacritic folding -* Keychain support for secure storage (and syncing) of passwords, API keys etc. -* Simple generation of Alfred feedback (XML output) -* Input/output decoding for handling non-ASCII text -* Lightweight web API with modelled on `requests`_ -* Pre-configured logging -* Painlessly add directories to ``sys.path`` -* Easily launch background tasks (daemons) to keep your workflow responsive -* Check for new versions and update workflows hosted on GitHub. -* Post notifications via Notification Center. - - -Alfred 3-only features ----------------------- - -* Set `workflow variables`_ from code -* Advanced modifiers -* Alfred 3-only updates (won't break Alfred 2 installs) -* Re-running Script Filters - - -Quick Example -============= - -Here's how to show recent `Pinboard.in `_ posts -in Alfred. - -Create a new workflow in Alfred's preferences. Add a **Script Filter** with -Language ``/usr/bin/python`` and paste the following into the **Script** -field (changing ``API_KEY``): - - -.. code-block:: python - - import sys - from workflow import Workflow, ICON_WEB, web - - API_KEY = 'your-pinboard-api-key' - - def main(wf): - url = 'https://api.pinboard.in/v1/posts/recent' - params = dict(auth_token=API_KEY, count=20, format='json') - r = web.get(url, params) - r.raise_for_status() - for post in r.json()['posts']: - wf.add_item(post['description'], post['href'], arg=post['href'], - uid=post['hash'], valid=True, icon=ICON_WEB) - wf.send_feedback() - - - if __name__ == u"__main__": - wf = Workflow() - sys.exit(wf.run(main)) - - -Add an **Open URL** action to your workflow with ``{query}`` as the **URL**, -connect your **Script Filter** to it, and you can now hit **ENTER** on a -Pinboard item in Alfred to open it in your browser. - - -Installation -============ - -**Note**: If you intend to distribute your workflow to other users, you -should include Alfred-Workflow (and other Python libraries your workflow -requires) within your workflow's directory as described below. **Do not** -ask users to install anything into their system Python. Python installations -cannot support multiple versions of the same library, so if you rely on -globally-installed libraries, the chances are very good that your workflow -will sooner or later break—or be broken by—some other software doing the -same naughty thing. - - -With pip --------- - -You can install Alfred-Workflow directly into your workflow with:: - - # from within your workflow directory - pip install --target=. Alfred-Workflow - -You can install any other library available on the `Cheese Shop`_ the -same way. See the `pip documentation`_ for more information. - - ->From source ------------ - -Download the ``alfred-workflow-X.X.X.zip`` file from the `GitHub releases`_ page -and extract the ZIP to the root directory of your workflow (where -``info.plist`` is). - -Alternatively, you can download `the source code`_ from the `GitHub repository`_ -and copy the ``workflow`` subfolder to the root directory of your workflow. - -Your workflow directory should look something like this (where -``yourscript.py`` contains your workflow code and ``info.plist`` is -the workflow information file generated by Alfred):: - - Your Workflow/ - info.plist - icon.png - workflow/ - __init__.py - background.py - notify.py - Notify.tgz - update.py - version - web.py - workflow.py - yourscript.py - etc. - - -Documentation -============= - -Detailed documentation, including a tutorial, is available at -http://www.deanishe.net/alfred-workflow/. - -.. _v2 branch: https://github.com/deanishe/alfred-workflow/tree/v2 -.. _requests: http://docs.python-requests.org/en/latest/ -.. _Alfred 2 and 3: http://www.alfredapp.com/ -.. _GitHub releases: https://github.com/deanishe/alfred-workflow/releases -.. _the source code: https://github.com/deanishe/alfred-workflow/archive/master.zip -.. _GitHub repository: https://github.com/deanishe/alfred-workflow -.. _Cheese Shop: https://pypi.python.org/pypi -.. _pip documentation: https://pip.pypa.io/en/latest/ -.. _workflow variables: http://www.deanishe.net/alfred-workflow/user-manual/workflow-variables.html - - diff --git a/Alfred_Workflow-1.25.1.dist-info/INSTALLER b/Alfred_Workflow-1.25.1.dist-info/INSTALLER deleted file mode 100644 index a1b589e..0000000 --- a/Alfred_Workflow-1.25.1.dist-info/INSTALLER +++ /dev/null @@ -1 +0,0 @@ -pip diff --git a/Alfred_Workflow-1.25.1.dist-info/METADATA b/Alfred_Workflow-1.25.1.dist-info/METADATA deleted file mode 100644 index ad684b6..0000000 --- a/Alfred_Workflow-1.25.1.dist-info/METADATA +++ /dev/null @@ -1,170 +0,0 @@ -Metadata-Version: 2.0 -Name: Alfred-Workflow -Version: 1.25.1 -Summary: Full-featured helper library for writing Alfred 2/3 workflows -Home-page: http://www.deanishe.net/alfred-workflow/ -Author: Dean Jackson -Author-email: deanishe@deanishe.net -License: UNKNOWN -Keywords: alfred workflow -Platform: UNKNOWN -Classifier: Development Status :: 5 - Production/Stable -Classifier: License :: OSI Approved :: MIT License -Classifier: Operating System :: MacOS :: MacOS X -Classifier: Intended Audience :: Developers -Classifier: Natural Language :: English -Classifier: Programming Language :: Python :: 2.6 -Classifier: Programming Language :: Python :: 2.7 -Classifier: Topic :: Software Development :: Libraries -Classifier: Topic :: Software Development :: Libraries :: Application Frameworks - -A helper library for writing `Alfred 2 and 3`_ workflows. - -Supports OS X 10.6+ and Python 2.6 and 2.7 (Alfred 3 is 10.9+/2.7 only). - -Alfred-Workflow is designed to take the grunt work out of writing a workflow. - -It gives you the tools to create a fast and featureful Alfred workflow from an API, application or library in minutes. - -http://www.deanishe.net/alfred-workflow/ - - -Features -======== - -* Catches and logs workflow errors for easier development and support -* "Magic" arguments to help development/debugging -* Auto-saves settings -* Super-simple data caching -* Fuzzy, Alfred-like search/filtering with diacritic folding -* Keychain support for secure storage (and syncing) of passwords, API keys etc. -* Simple generation of Alfred feedback (XML output) -* Input/output decoding for handling non-ASCII text -* Lightweight web API with modelled on `requests`_ -* Pre-configured logging -* Painlessly add directories to ``sys.path`` -* Easily launch background tasks (daemons) to keep your workflow responsive -* Check for new versions and update workflows hosted on GitHub. -* Post notifications via Notification Center. - - -Alfred 3-only features ----------------------- - -* Set `workflow variables`_ from code -* Advanced modifiers -* Alfred 3-only updates (won't break Alfred 2 installs) -* Re-running Script Filters - - -Quick Example -============= - -Here's how to show recent `Pinboard.in `_ posts -in Alfred. - -Create a new workflow in Alfred's preferences. Add a **Script Filter** with -Language ``/usr/bin/python`` and paste the following into the **Script** -field (changing ``API_KEY``): - - -.. code-block:: python - - import sys - from workflow import Workflow, ICON_WEB, web - - API_KEY = 'your-pinboard-api-key' - - def main(wf): - url = 'https://api.pinboard.in/v1/posts/recent' - params = dict(auth_token=API_KEY, count=20, format='json') - r = web.get(url, params) - r.raise_for_status() - for post in r.json()['posts']: - wf.add_item(post['description'], post['href'], arg=post['href'], - uid=post['hash'], valid=True, icon=ICON_WEB) - wf.send_feedback() - - - if __name__ == u"__main__": - wf = Workflow() - sys.exit(wf.run(main)) - - -Add an **Open URL** action to your workflow with ``{query}`` as the **URL**, -connect your **Script Filter** to it, and you can now hit **ENTER** on a -Pinboard item in Alfred to open it in your browser. - - -Installation -============ - -**Note**: If you intend to distribute your workflow to other users, you -should include Alfred-Workflow (and other Python libraries your workflow -requires) within your workflow's directory as described below. **Do not** -ask users to install anything into their system Python. Python installations -cannot support multiple versions of the same library, so if you rely on -globally-installed libraries, the chances are very good that your workflow -will sooner or later break—or be broken by—some other software doing the -same naughty thing. - - -With pip --------- - -You can install Alfred-Workflow directly into your workflow with:: - - # from within your workflow directory - pip install --target=. Alfred-Workflow - -You can install any other library available on the `Cheese Shop`_ the -same way. See the `pip documentation`_ for more information. - - ->From source ------------ - -Download the ``alfred-workflow-X.X.X.zip`` file from the `GitHub releases`_ page -and extract the ZIP to the root directory of your workflow (where -``info.plist`` is). - -Alternatively, you can download `the source code`_ from the `GitHub repository`_ -and copy the ``workflow`` subfolder to the root directory of your workflow. - -Your workflow directory should look something like this (where -``yourscript.py`` contains your workflow code and ``info.plist`` is -the workflow information file generated by Alfred):: - - Your Workflow/ - info.plist - icon.png - workflow/ - __init__.py - background.py - notify.py - Notify.tgz - update.py - version - web.py - workflow.py - yourscript.py - etc. - - -Documentation -============= - -Detailed documentation, including a tutorial, is available at -http://www.deanishe.net/alfred-workflow/. - -.. _v2 branch: https://github.com/deanishe/alfred-workflow/tree/v2 -.. _requests: http://docs.python-requests.org/en/latest/ -.. _Alfred 2 and 3: http://www.alfredapp.com/ -.. _GitHub releases: https://github.com/deanishe/alfred-workflow/releases -.. _the source code: https://github.com/deanishe/alfred-workflow/archive/master.zip -.. _GitHub repository: https://github.com/deanishe/alfred-workflow -.. _Cheese Shop: https://pypi.python.org/pypi -.. _pip documentation: https://pip.pypa.io/en/latest/ -.. _workflow variables: http://www.deanishe.net/alfred-workflow/user-manual/workflow-variables.html - - diff --git a/Alfred_Workflow-1.25.1.dist-info/RECORD b/Alfred_Workflow-1.25.1.dist-info/RECORD deleted file mode 100644 index 7e1d038..0000000 --- a/Alfred_Workflow-1.25.1.dist-info/RECORD +++ /dev/null @@ -1,23 +0,0 @@ -Alfred_Workflow-1.25.1.dist-info/DESCRIPTION.rst,sha256=bMU7zRG-Bk-ae5vSLr60iZ5JjCJeMIJmsRC34CNhtLA,4873 -Alfred_Workflow-1.25.1.dist-info/METADATA,sha256=PQcojypTE1Atx_0Wd4BWdzxxaQF067U3Srh2-vFlSrA,5651 -Alfred_Workflow-1.25.1.dist-info/RECORD,, -Alfred_Workflow-1.25.1.dist-info/WHEEL,sha256=BtVfdXUcEYLcFjOkbIrCFRyXU4qszVPt-E9o3RWkSNw,93 -Alfred_Workflow-1.25.1.dist-info/metadata.json,sha256=jwvfJFBwpsmPnz5TZHG6NcH4pZ0kSfQ5F_bsoUCvCO0,999 -Alfred_Workflow-1.25.1.dist-info/top_level.txt,sha256=jT-znOUjxvwdr-w5ECrvROWZ9y_Doiz0yVYSI0VxpXA,9 -workflow/Notify.tgz,sha256=dfcN09jNo0maLZLIZDSsBDouynsjgtDMSnSL3UfFcRE,35556 -workflow/__init__.py,sha256=zza-oCAbt7SoHB1qFTt6bc2fnBFGvtf4nKtoMf5o1tc,2035 -workflow/background.py,sha256=kAGACf7Q6mPRF62nOH9wzEqcjXetj-AuUcohF3PvMs8,6340 -workflow/notify.py,sha256=7DxDKAxISvs7eLwk27bRhV60PX6Uq_fTkx4dzfbEFAw,10565 -workflow/update.py,sha256=BMWDNjW1XSRe8o7bu4r1xcnQ1lRLUwG_OID9LBzA9hY,12123 -workflow/version,sha256=p_7X2XUUkwWpS59PZ6FYa2n47JvbT1QbEPQNRRZXgH4,6 -workflow/web.py,sha256=zkSL4n8uYYuhp5H3ynqMMdNb_gUv2qODBLP-rxY0LiU,20447 -workflow/workflow.py,sha256=zimluURA4FoT5C6UNUFNo0P49sLdSHDO0lfa2BhsMLk,98098 -workflow/workflow3.py,sha256=DXFCa8NMswLOAG4RTZKihZ07B_dlvIa1tohudFL9VpQ,15347 -Alfred_Workflow-1.25.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 -workflow/notify.pyc,, -workflow/workflow3.pyc,, -workflow/__init__.pyc,, -workflow/workflow.pyc,, -workflow/update.pyc,, -workflow/web.pyc,, -workflow/background.pyc,, diff --git a/Alfred_Workflow-1.25.1.dist-info/WHEEL b/Alfred_Workflow-1.25.1.dist-info/WHEEL deleted file mode 100644 index 5a93381..0000000 --- a/Alfred_Workflow-1.25.1.dist-info/WHEEL +++ /dev/null @@ -1,5 +0,0 @@ -Wheel-Version: 1.0 -Generator: bdist_wheel (0.29.0) -Root-Is-Purelib: true -Tag: cp27-none-any - diff --git a/Alfred_Workflow-1.25.1.dist-info/metadata.json b/Alfred_Workflow-1.25.1.dist-info/metadata.json deleted file mode 100644 index e1c1f96..0000000 --- a/Alfred_Workflow-1.25.1.dist-info/metadata.json +++ /dev/null @@ -1 +0,0 @@ -{"classifiers": ["Development Status :: 5 - Production/Stable", "License :: OSI Approved :: MIT License", "Operating System :: MacOS :: MacOS X", "Intended Audience :: Developers", "Natural Language :: English", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: Application Frameworks"], "extensions": {"python.details": {"contacts": [{"email": "deanishe@deanishe.net", "name": "Dean Jackson", "role": "author"}], "document_names": {"description": "DESCRIPTION.rst"}, "project_urls": {"Home": "http://www.deanishe.net/alfred-workflow/"}}}, "generator": "bdist_wheel (0.29.0)", "keywords": ["alfred", "workflow"], "metadata_version": "2.0", "name": "Alfred-Workflow", "summary": "Full-featured helper library for writing Alfred 2/3 workflows", "test_requires": [{"requires": ["coverage", "pytest", "pytest-cov", "pytest-httpbin", "pytest-localserver"]}], "version": "1.25.1"} \ No newline at end of file