-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
80 lines (70 loc) · 1.81 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = ["hatchling>=0.15.0"]
build-backend = "hatchling.build"
[project]
name = "pipx"
description = "Install and Run Python Applications in Isolated Environments"
readme = "README.md"
license = "MIT"
requires-python = ">=3.7"
keywords = ["pip", "install", "cli", "workflow", "Virtual Environment"]
authors = [{ name = "Chad Smith", email = "[email protected]" }]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"argcomplete>=1.9.4",
"colorama>=0.4.4; sys_platform == 'win32'",
"importlib-metadata>=3.3.0; python_version < '3.8'",
"packaging>=20.0",
"platformdirs>=2.1.0",
"userpath>=1.6.0, <=1.9.1, !=1.9.0",
]
dynamic = ["version"]
[project.urls]
Documentation = "https://pypa.github.io/pipx/"
"Source Code" = "https://github.com/pypa/pipx"
"Bug Tracker" = "https://github.com/pypa/pipx/issues"
[project.scripts]
pipx = "pipx.main:cli"
[tool.hatch.version]
source = "code"
path = "src/pipx/version.py"
[tool.hatch.build.targets.sdist]
include = ["/src", "/logo.png", "/pipx_demo.gif", "/*.md"]
[tool.black]
skip-magic-trailing-comma = true
[tool.ruff]
select = [
"A",
"B",
"C4",
"C9",
"E",
"F",
"I",
"PLC",
"PLE",
"PLW",
"RSE",
"W",
]
ignore = [
"B904",
]
line-length = 121
show-source = true
[tool.ruff.isort]
known-first-party = ["helpers", "package_info", "pipx"]
[tool.ruff.mccabe]
max-complexity = 15
[tool.pytest.ini_options]
markers = ["all_packages: test install with maximum number of packages"]