-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
38 lines (32 loc) · 1015 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "whatinstalled"
description = "List all packages ever installed on your machine."
dynamic = ["version"]
readme = "README.md"
authors = [{ name = "Alex Mili" }]
license = { file = "LICENSE" }
requires-python = ">=3.8"
classifiers = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
]
keywords = []
dependencies = ["typer", "tabulate"]
[project.urls]
Homepage = "https://github.com/AlexMili/WhatInstalled"
Issues = "https://github.com/AlexMili/WhatInstalled/issues"
Repository = "https://github.com/AlexMili/WhatInstalled"
Documentation = "https://github.com/AlexMili/WhatInstalled"
[project.scripts]
whatinstalled = "whatinstalled.main:app"
[tool.hatch.build.targets.wheel]
packages = ["./src/whatinstalled/"]
[tool.hatch.version]
path = "src/whatinstalled/VERSION.md"
pattern = "(?P<version>.*)"
[tool.ruff.lint.isort]
lines-after-imports = 2
known-first-party = ["whatinstalled"]