13 lines
228 B
TOML
13 lines
228 B
TOML
[project]
|
|
name = "pyinfo"
|
|
version = "0.1.0"
|
|
description = "Display info on the python environment"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"click>=8.1.8",
|
|
]
|
|
|
|
[project.scripts]
|
|
pyinfo = "pyinfo:info"
|