pip/setup.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

89 lines
3.0 KiB
Python
Raw Normal View History

import os
import sys
2018-06-25 13:30:54 +02:00
from setuptools import find_packages, setup
def read(rel_path: str) -> str:
here = os.path.abspath(os.path.dirname(__file__))
# intentionally *not* adding an encoding option to open, See:
# https://github.com/pypa/virtualenv/issues/201#issuecomment-3145690
with open(os.path.join(here, rel_path)) as fp:
return fp.read()
def get_version(rel_path: str) -> str:
for line in read(rel_path).splitlines():
2021-04-02 00:00:10 +02:00
if line.startswith("__version__"):
# __version__ = "0.9"
2019-11-18 02:08:56 +01:00
delim = '"' if '"' in line else "'"
return line.split(delim)[1]
raise RuntimeError("Unable to find version string.")
2017-03-18 19:42:11 +01:00
2021-04-02 00:00:10 +02:00
long_description = read("README.rst")
2008-10-16 00:02:57 +02:00
setup(
name="pip",
version=get_version("src/pip/__init__.py"),
description="The PyPA recommended tool for installing Python packages.",
long_description=long_description,
2021-04-02 00:00:10 +02:00
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
2021-01-23 15:40:44 +01:00
"Programming Language :: Python :: 3 :: Only",
2018-07-02 21:22:16 +02:00
"Programming Language :: Python :: 3.7",
2019-10-15 17:40:43 +02:00
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
2021-07-12 21:31:12 +02:00
"Programming Language :: Python :: 3.10",
2022-07-21 16:40:36 +02:00
"Programming Language :: Python :: 3.11",
2023-05-08 10:47:46 +02:00
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
2021-04-02 00:00:10 +02:00
url="https://pip.pypa.io/",
project_urls={
"Documentation": "https://pip.pypa.io",
"Source": "https://github.com/pypa/pip",
"Changelog": "https://pip.pypa.io/en/stable/news/",
},
2021-04-02 00:00:10 +02:00
author="The pip developers",
author_email="distutils-sig@python.org",
package_dir={"": "src"},
packages=find_packages(
where="src",
exclude=["contrib", "docs", "tests*", "tasks"],
),
package_data={
"pip": ["py.typed"],
"pip._vendor": ["vendor.txt"],
"pip._vendor.certifi": ["*.pem"],
"pip._vendor.requests": ["*.pem"],
"pip._vendor.distlib._backport": ["sysconfig.cfg"],
"pip._vendor.distlib": [
"t32.exe",
"t64.exe",
"t64-arm.exe",
"w32.exe",
"w64.exe",
"w64-arm.exe",
],
},
entry_points={
"console_scripts": [
"pip=pip._internal.cli.main:main",
2023-11-07 10:14:56 +01:00
f"pip{sys.version_info[0]}=pip._internal.cli.main:main",
2021-04-02 00:00:10 +02:00
"pip{}.{}=pip._internal.cli.main:main".format(*sys.version_info[:2]),
],
},
zip_safe=False,
# NOTE: python_requires is duplicated in __pip-runner__.py.
# When changing this value, please change the other copy as well.
2021-11-07 12:41:02 +01:00
python_requires=">=3.7",
)