summaryrefslogtreecommitdiff
path: root/venv/lib/python3.11/site-packages/click-8.1.7.dist-info
diff options
context:
space:
mode:
authorcyfraeviolae <cyfraeviolae>2024-04-03 03:17:55 -0400
committercyfraeviolae <cyfraeviolae>2024-04-03 03:17:55 -0400
commit12cf076118570eebbff08c6b3090e0d4798447a1 (patch)
tree3ba25e17e3c3a5e82316558ba3864b955919ff72 /venv/lib/python3.11/site-packages/click-8.1.7.dist-info
parentc45662ff3923b34614ddcc8feb9195541166dcc5 (diff)
no venv
Diffstat (limited to 'venv/lib/python3.11/site-packages/click-8.1.7.dist-info')
-rw-r--r--venv/lib/python3.11/site-packages/click-8.1.7.dist-info/INSTALLER1
-rw-r--r--venv/lib/python3.11/site-packages/click-8.1.7.dist-info/LICENSE.rst28
-rw-r--r--venv/lib/python3.11/site-packages/click-8.1.7.dist-info/METADATA103
-rw-r--r--venv/lib/python3.11/site-packages/click-8.1.7.dist-info/RECORD39
-rw-r--r--venv/lib/python3.11/site-packages/click-8.1.7.dist-info/WHEEL5
-rw-r--r--venv/lib/python3.11/site-packages/click-8.1.7.dist-info/top_level.txt1
6 files changed, 0 insertions, 177 deletions
diff --git a/venv/lib/python3.11/site-packages/click-8.1.7.dist-info/INSTALLER b/venv/lib/python3.11/site-packages/click-8.1.7.dist-info/INSTALLER
deleted file mode 100644
index a1b589e..0000000
--- a/venv/lib/python3.11/site-packages/click-8.1.7.dist-info/INSTALLER
+++ /dev/null
@@ -1 +0,0 @@
-pip
diff --git a/venv/lib/python3.11/site-packages/click-8.1.7.dist-info/LICENSE.rst b/venv/lib/python3.11/site-packages/click-8.1.7.dist-info/LICENSE.rst
deleted file mode 100644
index d12a849..0000000
--- a/venv/lib/python3.11/site-packages/click-8.1.7.dist-info/LICENSE.rst
+++ /dev/null
@@ -1,28 +0,0 @@
-Copyright 2014 Pallets
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are
-met:
-
-1. Redistributions of source code must retain the above copyright
- notice, this list of conditions and the following disclaimer.
-
-2. Redistributions in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in the
- documentation and/or other materials provided with the distribution.
-
-3. Neither the name of the copyright holder nor the names of its
- contributors may be used to endorse or promote products derived from
- this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
-PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
-TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
-LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
-NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/venv/lib/python3.11/site-packages/click-8.1.7.dist-info/METADATA b/venv/lib/python3.11/site-packages/click-8.1.7.dist-info/METADATA
deleted file mode 100644
index 7a6bbb2..0000000
--- a/venv/lib/python3.11/site-packages/click-8.1.7.dist-info/METADATA
+++ /dev/null
@@ -1,103 +0,0 @@
-Metadata-Version: 2.1
-Name: click
-Version: 8.1.7
-Summary: Composable command line interface toolkit
-Home-page: https://palletsprojects.com/p/click/
-Maintainer: Pallets
-Maintainer-email: contact@palletsprojects.com
-License: BSD-3-Clause
-Project-URL: Donate, https://palletsprojects.com/donate
-Project-URL: Documentation, https://click.palletsprojects.com/
-Project-URL: Changes, https://click.palletsprojects.com/changes/
-Project-URL: Source Code, https://github.com/pallets/click/
-Project-URL: Issue Tracker, https://github.com/pallets/click/issues/
-Project-URL: Chat, https://discord.gg/pallets
-Classifier: Development Status :: 5 - Production/Stable
-Classifier: Intended Audience :: Developers
-Classifier: License :: OSI Approved :: BSD License
-Classifier: Operating System :: OS Independent
-Classifier: Programming Language :: Python
-Requires-Python: >=3.7
-Description-Content-Type: text/x-rst
-License-File: LICENSE.rst
-Requires-Dist: colorama ; platform_system == "Windows"
-Requires-Dist: importlib-metadata ; python_version < "3.8"
-
-\$ click\_
-==========
-
-Click is a Python package for creating beautiful command line interfaces
-in a composable way with as little code as necessary. It's the "Command
-Line Interface Creation Kit". It's highly configurable but comes with
-sensible defaults out of the box.
-
-It aims to make the process of writing command line tools quick and fun
-while also preventing any frustration caused by the inability to
-implement an intended CLI API.
-
-Click in three points:
-
-- Arbitrary nesting of commands
-- Automatic help page generation
-- Supports lazy loading of subcommands at runtime
-
-
-Installing
-----------
-
-Install and update using `pip`_:
-
-.. code-block:: text
-
- $ pip install -U click
-
-.. _pip: https://pip.pypa.io/en/stable/getting-started/
-
-
-A Simple Example
-----------------
-
-.. code-block:: python
-
- import click
-
- @click.command()
- @click.option("--count", default=1, help="Number of greetings.")
- @click.option("--name", prompt="Your name", help="The person to greet.")
- def hello(count, name):
- """Simple program that greets NAME for a total of COUNT times."""
- for _ in range(count):
- click.echo(f"Hello, {name}!")
-
- if __name__ == '__main__':
- hello()
-
-.. code-block:: text
-
- $ python hello.py --count=3
- Your name: Click
- Hello, Click!
- Hello, Click!
- Hello, Click!
-
-
-Donate
-------
-
-The Pallets organization develops and supports Click and other popular
-packages. In order to grow the community of contributors and users, and
-allow the maintainers to devote more time to the projects, `please
-donate today`_.
-
-.. _please donate today: https://palletsprojects.com/donate
-
-
-Links
------
-
-- Documentation: https://click.palletsprojects.com/
-- Changes: https://click.palletsprojects.com/changes/
-- PyPI Releases: https://pypi.org/project/click/
-- Source Code: https://github.com/pallets/click
-- Issue Tracker: https://github.com/pallets/click/issues
-- Chat: https://discord.gg/pallets
diff --git a/venv/lib/python3.11/site-packages/click-8.1.7.dist-info/RECORD b/venv/lib/python3.11/site-packages/click-8.1.7.dist-info/RECORD
deleted file mode 100644
index fc0b7f5..0000000
--- a/venv/lib/python3.11/site-packages/click-8.1.7.dist-info/RECORD
+++ /dev/null
@@ -1,39 +0,0 @@
-click-8.1.7.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
-click-8.1.7.dist-info/LICENSE.rst,sha256=morRBqOU6FO_4h9C9OctWSgZoigF2ZG18ydQKSkrZY0,1475
-click-8.1.7.dist-info/METADATA,sha256=qIMevCxGA9yEmJOM_4WHuUJCwWpsIEVbCPOhs45YPN4,3014
-click-8.1.7.dist-info/RECORD,,
-click-8.1.7.dist-info/WHEEL,sha256=5sUXSg9e4bi7lTLOHcm6QEYwO5TIF1TNbTSVFVjcJcc,92
-click-8.1.7.dist-info/top_level.txt,sha256=J1ZQogalYS4pphY_lPECoNMfw0HzTSrZglC4Yfwo4xA,6
-click/__init__.py,sha256=YDDbjm406dTOA0V8bTtdGnhN7zj5j-_dFRewZF_pLvw,3138
-click/__pycache__/__init__.cpython-311.pyc,,
-click/__pycache__/_compat.cpython-311.pyc,,
-click/__pycache__/_termui_impl.cpython-311.pyc,,
-click/__pycache__/_textwrap.cpython-311.pyc,,
-click/__pycache__/_winconsole.cpython-311.pyc,,
-click/__pycache__/core.cpython-311.pyc,,
-click/__pycache__/decorators.cpython-311.pyc,,
-click/__pycache__/exceptions.cpython-311.pyc,,
-click/__pycache__/formatting.cpython-311.pyc,,
-click/__pycache__/globals.cpython-311.pyc,,
-click/__pycache__/parser.cpython-311.pyc,,
-click/__pycache__/shell_completion.cpython-311.pyc,,
-click/__pycache__/termui.cpython-311.pyc,,
-click/__pycache__/testing.cpython-311.pyc,,
-click/__pycache__/types.cpython-311.pyc,,
-click/__pycache__/utils.cpython-311.pyc,,
-click/_compat.py,sha256=5318agQpbt4kroKsbqDOYpTSWzL_YCZVUQiTT04yXmc,18744
-click/_termui_impl.py,sha256=3dFYv4445Nw-rFvZOTBMBPYwB1bxnmNk9Du6Dm_oBSU,24069
-click/_textwrap.py,sha256=10fQ64OcBUMuK7mFvh8363_uoOxPlRItZBmKzRJDgoY,1353
-click/_winconsole.py,sha256=5ju3jQkcZD0W27WEMGqmEP4y_crUVzPCqsX_FYb7BO0,7860
-click/core.py,sha256=j6oEWtGgGna8JarD6WxhXmNnxLnfRjwXglbBc-8jr7U,114086
-click/decorators.py,sha256=-ZlbGYgV-oI8jr_oH4RpuL1PFS-5QmeuEAsLDAYgxtw,18719
-click/exceptions.py,sha256=fyROO-47HWFDjt2qupo7A3J32VlpM-ovJnfowu92K3s,9273
-click/formatting.py,sha256=Frf0-5W33-loyY_i9qrwXR8-STnW3m5gvyxLVUdyxyk,9706
-click/globals.py,sha256=TP-qM88STzc7f127h35TD_v920FgfOD2EwzqA0oE8XU,1961
-click/parser.py,sha256=LKyYQE9ZLj5KgIDXkrcTHQRXIggfoivX14_UVIn56YA,19067
-click/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
-click/shell_completion.py,sha256=Ty3VM_ts0sQhj6u7eFTiLwHPoTgcXTGEAUg2OpLqYKw,18460
-click/termui.py,sha256=H7Q8FpmPelhJ2ovOhfCRhjMtCpNyjFXryAMLZODqsdc,28324
-click/testing.py,sha256=1Qd4kS5bucn1hsNIRryd0WtTMuCpkA93grkWxT8POsU,16084
-click/types.py,sha256=TZvz3hKvBztf-Hpa2enOmP4eznSPLzijjig5b_0XMxE,36391
-click/utils.py,sha256=1476UduUNY6UePGU4m18uzVHLt1sKM2PP3yWsQhbItM,20298
diff --git a/venv/lib/python3.11/site-packages/click-8.1.7.dist-info/WHEEL b/venv/lib/python3.11/site-packages/click-8.1.7.dist-info/WHEEL
deleted file mode 100644
index 2c08da0..0000000
--- a/venv/lib/python3.11/site-packages/click-8.1.7.dist-info/WHEEL
+++ /dev/null
@@ -1,5 +0,0 @@
-Wheel-Version: 1.0
-Generator: bdist_wheel (0.41.1)
-Root-Is-Purelib: true
-Tag: py3-none-any
-
diff --git a/venv/lib/python3.11/site-packages/click-8.1.7.dist-info/top_level.txt b/venv/lib/python3.11/site-packages/click-8.1.7.dist-info/top_level.txt
deleted file mode 100644
index dca9a90..0000000
--- a/venv/lib/python3.11/site-packages/click-8.1.7.dist-info/top_level.txt
+++ /dev/null
@@ -1 +0,0 @@
-click