Skip to content

Commit 18f7868

Browse files
committed
Add missing .gitignored files
with git add --force Signed-off-by: Philippe Ombredanne <[email protected]>
1 parent bbf1e46 commit 18f7868

File tree

6 files changed

+116
-0
lines changed

6 files changed

+116
-0
lines changed
Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
Metadata-Version: 2.1
2+
Name: pip
3+
Version: 22.1.dev0
4+
Summary: The PyPA recommended tool for installing Python packages.
5+
Home-page: https://pip.pypa.io/
6+
Author: The pip developers
7+
Author-email: [email protected]
8+
License: MIT
9+
Project-URL: Documentation, https://pip.pypa.io
10+
Project-URL: Source, https://github.com/pypa/pip
11+
Project-URL: Changelog, https://pip.pypa.io/en/stable/news/
12+
Platform: UNKNOWN
13+
Classifier: Development Status :: 5 - Production/Stable
14+
Classifier: Intended Audience :: Developers
15+
Classifier: License :: OSI Approved :: MIT License
16+
Classifier: Topic :: Software Development :: Build Tools
17+
Classifier: Programming Language :: Python
18+
Classifier: Programming Language :: Python :: 3
19+
Classifier: Programming Language :: Python :: 3 :: Only
20+
Classifier: Programming Language :: Python :: 3.7
21+
Classifier: Programming Language :: Python :: 3.8
22+
Classifier: Programming Language :: Python :: 3.9
23+
Classifier: Programming Language :: Python :: 3.10
24+
Classifier: Programming Language :: Python :: Implementation :: CPython
25+
Classifier: Programming Language :: Python :: Implementation :: PyPy
26+
Requires-Python: >=3.7
27+
License-File: LICENSE.txt
28+
29+
pip - The Python Package Installer
30+
==================================
31+
32+
.. image:: https://img.shields.io/pypi/v/pip.svg
33+
:target: https://pypi.org/project/pip/
34+
35+
.. image:: https://readthedocs.org/projects/pip/badge/?version=latest
36+
:target: https://pip.pypa.io/en/latest
37+
38+
pip is the `package installer`_ for Python. You can use pip to install packages from the `Python Package Index`_ and other indexes.
39+
40+
Please take a look at our documentation for how to install and use pip:
41+
42+
* `Installation`_
43+
* `Usage`_
44+
45+
We release updates regularly, with a new version every 3 months. Find more details in our documentation:
46+
47+
* `Release notes`_
48+
* `Release process`_
49+
50+
In pip 20.3, we've `made a big improvement to the heart of pip`_; `learn more`_. We want your input, so `sign up for our user experience research studies`_ to help us do it right.
51+
52+
**Note**: pip 21.0, in January 2021, removed Python 2 support, per pip's `Python 2 support policy`_. Please migrate to Python 3.
53+
54+
If you find bugs, need help, or want to talk to the developers, please use our mailing lists or chat rooms:
55+
56+
* `Issue tracking`_
57+
* `Discourse channel`_
58+
* `User IRC`_
59+
60+
If you want to get involved head over to GitHub to get the source code, look at our development documentation and feel free to jump on the developer mailing lists and chat rooms:
61+
62+
* `GitHub page`_
63+
* `Development documentation`_
64+
* `Development mailing list`_
65+
* `Development IRC`_
66+
67+
Code of Conduct
68+
---------------
69+
70+
Everyone interacting in the pip project's codebases, issue trackers, chat
71+
rooms, and mailing lists is expected to follow the `PSF Code of Conduct`_.
72+
73+
.. _package installer: https://packaging.python.org/guides/tool-recommendations/
74+
.. _Python Package Index: https://pypi.org
75+
.. _Installation: https://pip.pypa.io/en/stable/installation/
76+
.. _Usage: https://pip.pypa.io/en/stable/
77+
.. _Release notes: https://pip.pypa.io/en/stable/news.html
78+
.. _Release process: https://pip.pypa.io/en/latest/development/release-process/
79+
.. _GitHub page: https://github.com/pypa/pip
80+
.. _Development documentation: https://pip.pypa.io/en/latest/development
81+
.. _made a big improvement to the heart of pip: https://pyfound.blogspot.com/2020/11/pip-20-3-new-resolver.html
82+
.. _learn more: https://pip.pypa.io/en/latest/user_guide/#changes-to-the-pip-dependency-resolver-in-20-3-2020
83+
.. _sign up for our user experience research studies: https://pyfound.blogspot.com/2020/03/new-pip-resolver-to-roll-out-this-year.html
84+
.. _Python 2 support policy: https://pip.pypa.io/en/latest/development/release-process/#python-2-support
85+
.. _Issue tracking: https://github.com/pypa/pip/issues
86+
.. _Discourse channel: https://discuss.python.org/c/packaging
87+
.. _Development mailing list: https://mail.python.org/mailman3/lists/distutils-sig.python.org/
88+
.. _User IRC: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa
89+
.. _Development IRC: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa-dev
90+
.. _PSF Code of Conduct: https://github.com/pypa/.github/blob/main/CODE_OF_CONDUCT.md
91+
92+
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
AUTHORS.txt
2+
LICENSE.txt
3+
MANIFEST.in
4+
NEWS.rst
5+
README.rst
6+
pyproject.toml
7+
setup.cfg
8+
setup.py
9+
src/pip/__init__.py
10+
src/pip/__main__.py
11+
src/pip/py.typed
12+
src/pip.egg-info/PKG-INFO
13+
src/pip.egg-info/SOURCES.txt
14+
src/pip.egg-info/dependency_links.txt
15+
src/pip.egg-info/entry_points.txt
16+
src/pip.egg-info/not-zip-safe
17+
src/pip.egg-info/top_level.txt
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[console_scripts]
2+
pip = pip._internal.cli.main:main
3+
pip3 = pip._internal.cli.main:main
4+
pip3.8 = pip._internal.cli.main:main
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pip

0 commit comments

Comments
 (0)