Skip to content

Commit 3217c2b

Browse files
author
Mukesh
committed
updated for pers use
1 parent 45c4ddd commit 3217c2b

File tree

553 files changed

+174752
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

553 files changed

+174752
-0
lines changed

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"python.pythonPath": "c:\\MM_Projects\\PyProjects\\java2python\\env\\Scripts\\python.exe"
3+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
"""Run the EasyInstall command"""
2+
3+
if __name__ == '__main__':
4+
from setuptools.command.easy_install import main
5+
main()
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pip
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Copyright (c) 2008-2019 The pip developers (see AUTHORS.txt file)
2+
3+
Permission is hereby granted, free of charge, to any person obtaining
4+
a copy of this software and associated documentation files (the
5+
"Software"), to deal in the Software without restriction, including
6+
without limitation the rights to use, copy, modify, merge, publish,
7+
distribute, sublicense, and/or sell copies of the Software, and to
8+
permit persons to whom the Software is furnished to do so, subject to
9+
the following conditions:
10+
11+
The above copyright notice and this permission notice shall be
12+
included in all copies or substantial portions of the Software.
13+
14+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
Metadata-Version: 2.1
2+
Name: pip
3+
Version: 20.2.1
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+
Keywords: distutils easy_install egg setuptools wheel virtualenv
13+
Platform: UNKNOWN
14+
Classifier: Development Status :: 5 - Production/Stable
15+
Classifier: Intended Audience :: Developers
16+
Classifier: License :: OSI Approved :: MIT License
17+
Classifier: Topic :: Software Development :: Build Tools
18+
Classifier: Programming Language :: Python
19+
Classifier: Programming Language :: Python :: 2
20+
Classifier: Programming Language :: Python :: 2.7
21+
Classifier: Programming Language :: Python :: 3
22+
Classifier: Programming Language :: Python :: 3.5
23+
Classifier: Programming Language :: Python :: 3.6
24+
Classifier: Programming Language :: Python :: 3.7
25+
Classifier: Programming Language :: Python :: 3.8
26+
Classifier: Programming Language :: Python :: Implementation :: CPython
27+
Classifier: Programming Language :: Python :: Implementation :: PyPy
28+
Requires-Python: >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*
29+
30+
pip - The Python Package Installer
31+
==================================
32+
33+
.. image:: https://img.shields.io/pypi/v/pip.svg
34+
:target: https://pypi.org/project/pip/
35+
36+
.. image:: https://readthedocs.org/projects/pip/badge/?version=latest
37+
:target: https://pip.pypa.io/en/latest
38+
39+
pip is the `package installer`_ for Python. You can use pip to install packages from the `Python Package Index`_ and other indexes.
40+
41+
Please take a look at our documentation for how to install and use pip:
42+
43+
* `Installation`_
44+
* `Usage`_
45+
46+
We release updates regularly, with a new version every 3 months. Find more details in our documentation:
47+
48+
* `Release notes`_
49+
* `Release process`_
50+
51+
In 2020, we're working on improvements to the heart of pip. Please `learn more and take our survey`_ to help us do it right.
52+
53+
If you find bugs, need help, or want to talk to the developers, please use our mailing lists or chat rooms:
54+
55+
* `Issue tracking`_
56+
* `Discourse channel`_
57+
* `User IRC`_
58+
59+
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:
60+
61+
* `GitHub page`_
62+
* `Development documentation`_
63+
* `Development mailing list`_
64+
* `Development IRC`_
65+
66+
Code of Conduct
67+
---------------
68+
69+
Everyone interacting in the pip project's codebases, issue trackers, chat
70+
rooms, and mailing lists is expected to follow the `PyPA Code of Conduct`_.
71+
72+
.. _package installer: https://packaging.python.org/guides/tool-recommendations/
73+
.. _Python Package Index: https://pypi.org
74+
.. _Installation: https://pip.pypa.io/en/stable/installing.html
75+
.. _Usage: https://pip.pypa.io/en/stable/
76+
.. _Release notes: https://pip.pypa.io/en/stable/news.html
77+
.. _Release process: https://pip.pypa.io/en/latest/development/release-process/
78+
.. _GitHub page: https://github.com/pypa/pip
79+
.. _Development documentation: https://pip.pypa.io/en/latest/development
80+
.. _learn more and take our survey: https://pyfound.blogspot.com/2020/03/new-pip-resolver-to-roll-out-this-year.html
81+
.. _Issue tracking: https://github.com/pypa/pip/issues
82+
.. _Discourse channel: https://discuss.python.org/c/packaging
83+
.. _Development mailing list: https://mail.python.org/mailman3/lists/distutils-sig.python.org/
84+
.. _User IRC: https://webchat.freenode.net/?channels=%23pypa
85+
.. _Development IRC: https://webchat.freenode.net/?channels=%23pypa-dev
86+
.. _PyPA Code of Conduct: https://www.pypa.io/en/latest/code-of-conduct/
87+
88+

0 commit comments

Comments
 (0)