-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 938 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (28 loc) · 938 Bytes
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
[build-system]
requires = ["setuptools>=61.0, <75.0"]
build-backend = "setuptools.build_meta"
[project]
name = "git-uncommitted-scanner"
version = "0.1.3"
description = "A lightweight CLI to scan for uncommitted Git repositories."
readme = "README.md"
requires-python = ">=3.9"
# ➔ Using PEP 621 format for broader compatibility
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"typer>=0.9.0",
"rich>=13.0.0",
"textual>=0.50.0"
]
[project.urls]
Homepage = "https://github.com/RootDeveloperDS/git-uncommitted-scanner"
Repository = "https://github.com/RootDeveloperDS/git-uncommitted-scanner"
"Bug Tracker" = "https://github.com/RootDeveloperDS/git-uncommitted-scanner/issues"
[project.scripts]
# This exposes the CLI globally.
# Usage: user types 'scanrepos' -> it runs app() in main.py
scanrepos = "git_scanner.main:app"