Initial commit

This commit is contained in:
Justin C. Miller
2025-05-10 18:22:53 -07:00
commit fe6aa0ff01
6 changed files with 100 additions and 0 deletions

12
pyproject.toml Normal file
View File

@@ -0,0 +1,12 @@
[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"