Skip to content
This repository has been archived by the owner on Apr 1, 2020. It is now read-only.

Commit

Permalink
pkg_resources info
Browse files Browse the repository at this point in the history
  • Loading branch information
zrzka committed Oct 4, 2017
1 parent a72db55 commit a03fd52
Show file tree
Hide file tree
Showing 29 changed files with 1,887 additions and 0 deletions.
5 changes: 5 additions & 0 deletions blackmamba/lib/docutils-0.14.dist-info/DESCRIPTION.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Docutils is a modular system for processing documentation
into useful formats, such as HTML, XML, and LaTeX. For
input Docutils supports reStructuredText, an easy-to-read,
what-you-see-is-what-you-get plaintext markup syntax.

1 change: 1 addition & 0 deletions blackmamba/lib/docutils-0.14.dist-info/INSTALLER
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pip
54 changes: 54 additions & 0 deletions blackmamba/lib/docutils-0.14.dist-info/METADATA
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
Metadata-Version: 2.0
Name: docutils
Version: 0.14
Summary: Docutils -- Python Documentation Utilities
Home-page: http://docutils.sourceforge.net/
Author: docutils-develop list
Author-email: docutils-develop@lists.sourceforge.net
License: public domain, Python, 2-Clause BSD, GPL 3 (see COPYING.txt)
Platform: OS-independent
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Other Audience
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: Public Domain
Classifier: License :: OSI Approved :: Python Software Foundation License
Classifier: License :: OSI Approved :: BSD License
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.4
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Documentation
Classifier: Topic :: Software Development :: Documentation
Classifier: Topic :: Text Processing
Classifier: Natural Language :: English
Classifier: Natural Language :: Afrikaans
Classifier: Natural Language :: Catalan
Classifier: Natural Language :: Chinese (Simplified)
Classifier: Natural Language :: Chinese (Traditional)
Classifier: Natural Language :: Czech
Classifier: Natural Language :: Dutch
Classifier: Natural Language :: Esperanto
Classifier: Natural Language :: Finnish
Classifier: Natural Language :: French
Classifier: Natural Language :: Galician
Classifier: Natural Language :: German
Classifier: Natural Language :: Italian
Classifier: Natural Language :: Japanese
Classifier: Natural Language :: Polish
Classifier: Natural Language :: Portuguese (Brazilian)
Classifier: Natural Language :: Russian
Classifier: Natural Language :: Slovak
Classifier: Natural Language :: Spanish
Classifier: Natural Language :: Swedish

Docutils is a modular system for processing documentation
into useful formats, such as HTML, XML, and LaTeX. For
input Docutils supports reStructuredText, an easy-to-read,
what-you-see-is-what-you-get plaintext markup syntax.

331 changes: 331 additions & 0 deletions blackmamba/lib/docutils-0.14.dist-info/RECORD

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions blackmamba/lib/docutils-0.14.dist-info/WHEEL
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Wheel-Version: 1.0
Generator: bdist_wheel (0.24.0)
Root-Is-Purelib: true
Tag: py3-none-any

1 change: 1 addition & 0 deletions blackmamba/lib/docutils-0.14.dist-info/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"license": "public domain, Python, 2-Clause BSD, GPL 3 (see COPYING.txt)", "classifiers": ["Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: End Users/Desktop", "Intended Audience :: Other Audience", "Intended Audience :: Developers", "Intended Audience :: System Administrators", "License :: Public Domain", "License :: OSI Approved :: Python Software Foundation License", "License :: OSI Approved :: BSD License", "License :: OSI Approved :: GNU General Public License (GPL)", "Operating System :: OS Independent", "Programming Language :: Python :: 2.4", "Programming Language :: Python :: 2.5", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Topic :: Documentation", "Topic :: Software Development :: Documentation", "Topic :: Text Processing", "Natural Language :: English", "Natural Language :: Afrikaans", "Natural Language :: Catalan", "Natural Language :: Chinese (Simplified)", "Natural Language :: Chinese (Traditional)", "Natural Language :: Czech", "Natural Language :: Dutch", "Natural Language :: Esperanto", "Natural Language :: Finnish", "Natural Language :: French", "Natural Language :: Galician", "Natural Language :: German", "Natural Language :: Italian", "Natural Language :: Japanese", "Natural Language :: Polish", "Natural Language :: Portuguese (Brazilian)", "Natural Language :: Russian", "Natural Language :: Slovak", "Natural Language :: Spanish", "Natural Language :: Swedish"], "metadata_version": "2.0", "version": "0.14", "name": "docutils", "extensions": {"python.details": {"contacts": [{"email": "docutils-develop@lists.sourceforge.net", "role": "author", "name": "docutils-develop list"}], "document_names": {"description": "DESCRIPTION.rst"}, "project_urls": {"Home": "http://docutils.sourceforge.net/"}}}, "platform": "OS-independent", "generator": "bdist_wheel (0.24.0)", "summary": "Docutils -- Python Documentation Utilities"}
1 change: 1 addition & 0 deletions blackmamba/lib/docutils-0.14.dist-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
docutils
79 changes: 79 additions & 0 deletions blackmamba/lib/flake8-3.4.1.dist-info/DESCRIPTION.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
========
Flake8
========

Flake8 is a wrapper around these tools:

- PyFlakes
- pycodestyle
- Ned Batchelder's McCabe script

Flake8 runs all the tools by launching the single ``flake8`` command.
It displays the warnings in a per-file, merged output.

It also adds a few features:

- files that contain this line are skipped::

# flake8: noqa

- lines that contain a ``# noqa`` comment at the end will not issue warnings.
- you can ignore specific errors on a line with ``# noqa: <error>``, e.g.,
``# noqa: E234``
- Git and Mercurial hooks
- extendable through ``flake8.extension`` and ``flake8.formatting`` entry
points


Quickstart
==========

See our `quickstart documentation
<http://flake8.pycqa.org/en/latest/index.html#quickstart>`_ for how to install
and get started with Flake8.


Frequently Asked Questions
==========================

Flake8 maintains an `FAQ <http://flake8.pycqa.org/en/latest/faq.html>`_ in its
documentation.


Questions or Feedback
=====================

If you have questions you'd like to ask the developers, or feedback you'd like
to provide, feel free to use the mailing list: code-quality@python.org

We would love to hear from you. Additionally, if you have a feature you'd like
to suggest, the mailing list would be the best place for it.


Links
=====

* `Flake8 Documentation <http://flake8.pycqa.org/en/latest/>`_

* `GitLab Project <https://gitlab.com/pycqa/flake8>`_

* `All (Open and Closed) Issues
<https://gitlab.com/pycqa/flake8/issues?scope=all&sort=updated_desc&state=all>`_

* `Code-Quality Archives
<https://mail.python.org/mailman/listinfo/code-quality>`_

* `Code of Conduct
<http://flake8.pycqa.org/en/latest/internal/contributing.html#code-of-conduct>`_

* `Getting Started Contributing
<http://flake8.pycqa.org/en/latest/internal/contributing.html>`_


Maintenance
===========

Flake8 was created by Tarek Ziadé and is currently maintained by `Ian Cordasco
<https://coglib.com/~icordasc/>`_


1 change: 1 addition & 0 deletions blackmamba/lib/flake8-3.4.1.dist-info/INSTALLER
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pip
108 changes: 108 additions & 0 deletions blackmamba/lib/flake8-3.4.1.dist-info/METADATA
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
Metadata-Version: 2.0
Name: flake8
Version: 3.4.1
Summary: the modular source code checker: pep8, pyflakes and co
Home-page: https://gitlab.com/pycqa/flake8
Author: Ian Stapleton Cordasco
Author-email: graffatcolmingov@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Framework :: Flake8
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Quality Assurance
Requires-Dist: enum34; python_version<"3.4"
Requires-Dist: configparser; python_version<"3.2"
Requires-Dist: pyflakes >= 1.5.0, < 1.6.0
Requires-Dist: pycodestyle >= 2.0.0, < 2.4.0
Requires-Dist: mccabe >= 0.6.0, < 0.7.0

========
Flake8
========

Flake8 is a wrapper around these tools:

- PyFlakes
- pycodestyle
- Ned Batchelder's McCabe script

Flake8 runs all the tools by launching the single ``flake8`` command.
It displays the warnings in a per-file, merged output.

It also adds a few features:

- files that contain this line are skipped::

# flake8: noqa

- lines that contain a ``# noqa`` comment at the end will not issue warnings.
- you can ignore specific errors on a line with ``# noqa: <error>``, e.g.,
``# noqa: E234``
- Git and Mercurial hooks
- extendable through ``flake8.extension`` and ``flake8.formatting`` entry
points


Quickstart
==========

See our `quickstart documentation
<http://flake8.pycqa.org/en/latest/index.html#quickstart>`_ for how to install
and get started with Flake8.


Frequently Asked Questions
==========================

Flake8 maintains an `FAQ <http://flake8.pycqa.org/en/latest/faq.html>`_ in its
documentation.


Questions or Feedback
=====================

If you have questions you'd like to ask the developers, or feedback you'd like
to provide, feel free to use the mailing list: code-quality@python.org

We would love to hear from you. Additionally, if you have a feature you'd like
to suggest, the mailing list would be the best place for it.


Links
=====

* `Flake8 Documentation <http://flake8.pycqa.org/en/latest/>`_

* `GitLab Project <https://gitlab.com/pycqa/flake8>`_

* `All (Open and Closed) Issues
<https://gitlab.com/pycqa/flake8/issues?scope=all&sort=updated_desc&state=all>`_

* `Code-Quality Archives
<https://mail.python.org/mailman/listinfo/code-quality>`_

* `Code of Conduct
<http://flake8.pycqa.org/en/latest/internal/contributing.html#code-of-conduct>`_

* `Getting Started Contributing
<http://flake8.pycqa.org/en/latest/internal/contributing.html>`_


Maintenance
===========

Flake8 was created by Tarek Ziadé and is currently maintained by `Ian Cordasco
<https://coglib.com/~icordasc/>`_


73 changes: 73 additions & 0 deletions blackmamba/lib/flake8-3.4.1.dist-info/RECORD
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
flake8/__init__.py,sha256=lu-aXXxZt5CnVF5DXIrGYOb8PtiknxLzKGfaqRZ3CTM,2382
flake8/__main__.py,sha256=dabUN9AcCKbyXg1XHufkqTrjjY8RcLXONtghj0Fe_ak,92
flake8/checker.py,sha256=S7R2XIB-CSzs3jh9mmXq2WtUa4cGM9TdG3dcty20W7g,25340
flake8/defaults.py,sha256=eupWd8BH7p__oQJwWbhk-GqINlPw1dJckfVO-bZyEMQ,1010
flake8/exceptions.py,sha256=RGnigq-A1nFEcwzmfVl9o_unAbuQupcjtE4erc3w-O0,4188
flake8/processor.py,sha256=I7fc3FpbcXHWaiFMEv2CvbNhs-GPRgJekCRuSWQl00Q,16229
flake8/statistics.py,sha256=7JZMbDPTTzXQKpVWnr1xMnmNialNpYVNfj_PIeHAGt4,4258
flake8/style_guide.py,sha256=F2JsWChpWGWel4PFc1GxXE2ebxXQ-P6C09LQoNwoWvI,15881
flake8/utils.py,sha256=b3UUY_oukVEUVeATdPhgzZfcXunFBN0c2r9KOvuqbvk,11049
flake8/api/__init__.py,sha256=-wEs53FMauJOC9KeMBK7BrmlFJk87IESGqMrK0r_boA,206
flake8/api/legacy.py,sha256=2AFwbv7pZBSTQXHYrPAKETv07RoO96VhZa9FLyhHjck,6190
flake8/formatting/__init__.py,sha256=deO8xV8tOk3-Ve3JLskFJw-2w1JxugzDAM4ktVsZUDM,62
flake8/formatting/base.py,sha256=rCRS83sDpd7lFCqBDBc37EusftPLH_CF8sbKl2Ilrxo,6935
flake8/formatting/default.py,sha256=YwYhfezcmIAKwsH-2uZyPzFXbDq05MLlIMYvmerg7gQ,2372
flake8/main/__init__.py,sha256=_q10eGIQnFfs-_oiQp024dq3oM5AylXHuh-N8n0F4fY,63
flake8/main/application.py,sha256=EqfgoWioPjun4b5hzbdzUp4-kVH4vDBrMhCyadACcsI,14198
flake8/main/cli.py,sha256=G2M8SZXhku4zlGFsZx6NQdXVs3lHlXYT2-DpYaSYvIs,488
flake8/main/debug.py,sha256=Yjcv2BcJ7wtdeBF1TYwtNctclWINlG7Zb0qmuG1VxtQ,2017
flake8/main/git.py,sha256=xzTGl-dRgtK1gt2rJmCz2WFbUQUCluguKaiP5RNkH2g,7151
flake8/main/mercurial.py,sha256=t9uJeoHl62MibyZD_7bgU9WUUckXVcvj_3-ADCzL5ro,3665
flake8/main/options.py,sha256=hI-FeslBvD49rIqV6WRZW8c77WnpEe1cgL8v870lzCs,7213
flake8/main/setuptools_command.py,sha256=FNLjfZNG20WKGI-Lu9gPF7zRM4B5_xpMMuSc0LubgII,3910
flake8/main/vcs.py,sha256=pCVwnuNgvUJ16fRmBZaem6DB0iRx--dYVopTUhaivvI,1256
flake8/options/__init__.py,sha256=0IHSM_4Cv3nf5OBX1JepUBhOtPYdVor66AN9HUrG5Zg,461
flake8/options/aggregator.py,sha256=uduJjZv2VcL9Rs-H2O6Iu1u5Bjrb4fLvJXEPnW5c53A,3288
flake8/options/config.py,sha256=nFETchNie82-wPlHaNJQVpPsyyRZIqqJWgtOYph3joQ,10896
flake8/options/manager.py,sha256=yt6quKjhpPAYSV1wkplVdMtIjQL0jXIm5vpL-fl9HoQ,12733
flake8/plugins/__init__.py,sha256=_iuuZoat150uO1BjEOu6S2_th3rS7UWMl2eRbO7iYmc,57
flake8/plugins/_trie.py,sha256=1EDplEQcWuTWgLKy0RKeyiZ-ng1co0tNQ1JKQnT_rJM,3003
flake8/plugins/manager.py,sha256=Lk2erQWJk8J7eSlpMc1T9ELCBUbHfaVv7T2ov1-znBU,17681
flake8/plugins/notifier.py,sha256=8-mLQFBgO71Rfp9dHle1spXRP5e1nhWGzg7wJbYkTz4,1574
flake8/plugins/pyflakes.py,sha256=EWr-1BFQuuTV03c9igPwuSYSi_jHFegS0NIT6NpyjC8,5703
flake8-3.4.1.dist-info/DESCRIPTION.rst,sha256=Rpw8M6D2L4A-AWB9e8zJJ9HG-wgB8cRQMZ3xL_qJvuw,1967
flake8-3.4.1.dist-info/METADATA,sha256=TgKTU7nWCB02LlFLcFWBX9xHzV5v65PCDDTeYXwp3Ss,3142
flake8-3.4.1.dist-info/RECORD,,
flake8-3.4.1.dist-info/WHEEL,sha256=o2k-Qa-RMNIJmUdIc7KU6VWR_ErNRbWNlxDIpl7lm34,110
flake8-3.4.1.dist-info/entry_points.txt,sha256=7tyWhLCxa-jEqLruzc5uRYPnyM2nIIRsFL7-g5bI28k,2565
flake8-3.4.1.dist-info/metadata.json,sha256=nj-r4Vm-2iTc1DuPJX8slL1m3grp6eP4m15seHzlEsI,4187
flake8-3.4.1.dist-info/top_level.txt,sha256=6Tlo_i7chAhjqQkybdwPfClaqi0-dkJh_2o1PSn1aBM,7
../../../bin/flake8,sha256=8j_6laDCGTeV_KdF6hWkSO__DMGqefZ4iHToh4rWRXU,240
flake8-3.4.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
flake8/options/__pycache__/config.cpython-36.pyc,,
flake8/options/__pycache__/aggregator.cpython-36.pyc,,
flake8/options/__pycache__/manager.cpython-36.pyc,,
flake8/options/__pycache__/__init__.cpython-36.pyc,,
flake8/plugins/__pycache__/pyflakes.cpython-36.pyc,,
flake8/plugins/__pycache__/notifier.cpython-36.pyc,,
flake8/plugins/__pycache__/manager.cpython-36.pyc,,
flake8/plugins/__pycache__/__init__.cpython-36.pyc,,
flake8/plugins/__pycache__/_trie.cpython-36.pyc,,
flake8/__pycache__/checker.cpython-36.pyc,,
flake8/__pycache__/exceptions.cpython-36.pyc,,
flake8/__pycache__/style_guide.cpython-36.pyc,,
flake8/__pycache__/__main__.cpython-36.pyc,,
flake8/__pycache__/defaults.cpython-36.pyc,,
flake8/__pycache__/utils.cpython-36.pyc,,
flake8/__pycache__/statistics.cpython-36.pyc,,
flake8/__pycache__/__init__.cpython-36.pyc,,
flake8/__pycache__/processor.cpython-36.pyc,,
flake8/formatting/__pycache__/default.cpython-36.pyc,,
flake8/formatting/__pycache__/base.cpython-36.pyc,,
flake8/formatting/__pycache__/__init__.cpython-36.pyc,,
flake8/api/__pycache__/legacy.cpython-36.pyc,,
flake8/api/__pycache__/__init__.cpython-36.pyc,,
flake8/main/__pycache__/debug.cpython-36.pyc,,
flake8/main/__pycache__/git.cpython-36.pyc,,
flake8/main/__pycache__/cli.cpython-36.pyc,,
flake8/main/__pycache__/setuptools_command.cpython-36.pyc,,
flake8/main/__pycache__/application.cpython-36.pyc,,
flake8/main/__pycache__/vcs.cpython-36.pyc,,
flake8/main/__pycache__/options.cpython-36.pyc,,
flake8/main/__pycache__/__init__.cpython-36.pyc,,
flake8/main/__pycache__/mercurial.cpython-36.pyc,,
6 changes: 6 additions & 0 deletions blackmamba/lib/flake8-3.4.1.dist-info/WHEEL
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Wheel-Version: 1.0
Generator: bdist_wheel (0.29.0)
Root-Is-Purelib: true
Tag: py2-none-any
Tag: py3-none-any

45 changes: 45 additions & 0 deletions blackmamba/lib/flake8-3.4.1.dist-info/entry_points.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
[console_scripts]
flake8 = flake8.main.cli:main

[distutils.commands]
flake8 = flake8.main.setuptools_command:Flake8

[flake8.extension]
F = flake8.plugins.pyflakes:FlakesChecker
pycodestyle.blank_lines = pycodestyle:blank_lines
pycodestyle.break_around_binary_operator = pycodestyle:break_around_binary_operator
pycodestyle.comparison_negative = pycodestyle:comparison_negative
pycodestyle.comparison_to_singleton = pycodestyle:comparison_to_singleton
pycodestyle.comparison_type = pycodestyle:comparison_type
pycodestyle.compound_statements = pycodestyle:compound_statements
pycodestyle.continued_indentation = pycodestyle:continued_indentation
pycodestyle.explicit_line_join = pycodestyle:explicit_line_join
pycodestyle.extraneous_whitespace = pycodestyle:extraneous_whitespace
pycodestyle.imports_on_separate_lines = pycodestyle:imports_on_separate_lines
pycodestyle.indentation = pycodestyle:indentation
pycodestyle.maximum_line_length = pycodestyle:maximum_line_length
pycodestyle.missing_whitespace = pycodestyle:missing_whitespace
pycodestyle.missing_whitespace_after_import_keyword = pycodestyle:missing_whitespace_after_import_keyword
pycodestyle.missing_whitespace_around_operator = pycodestyle:missing_whitespace_around_operator
pycodestyle.module_imports_on_top_of_file = pycodestyle:module_imports_on_top_of_file
pycodestyle.python_3000_backticks = pycodestyle:python_3000_backticks
pycodestyle.python_3000_has_key = pycodestyle:python_3000_has_key
pycodestyle.python_3000_not_equal = pycodestyle:python_3000_not_equal
pycodestyle.python_3000_raise_comma = pycodestyle:python_3000_raise_comma
pycodestyle.tabs_obsolete = pycodestyle:tabs_obsolete
pycodestyle.tabs_or_spaces = pycodestyle:tabs_or_spaces
pycodestyle.trailing_blank_lines = pycodestyle:trailing_blank_lines
pycodestyle.trailing_whitespace = pycodestyle:trailing_whitespace
pycodestyle.whitespace_around_comma = pycodestyle:whitespace_around_comma
pycodestyle.whitespace_around_keywords = pycodestyle:whitespace_around_keywords
pycodestyle.whitespace_around_named_parameter_equals = pycodestyle:whitespace_around_named_parameter_equals
pycodestyle.whitespace_around_operator = pycodestyle:whitespace_around_operator
pycodestyle.whitespace_before_comment = pycodestyle:whitespace_before_comment
pycodestyle.whitespace_before_parameters = pycodestyle:whitespace_before_parameters

[flake8.report]
default = flake8.formatting.default:Default
pylint = flake8.formatting.default:Pylint
quiet-filename = flake8.formatting.default:FilenameOnly
quiet-nothing = flake8.formatting.default:Nothing

0 comments on commit a03fd52

Please sign in to comment.