-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (34 loc) · 1.01 KB
/
Copy pathpyproject.toml
File metadata and controls
41 lines (34 loc) · 1.01 KB
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
[build-system]
requires = ["setuptools>=82.0.1", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gitcollect"
version = "0.1.0"
description = "A lightweight Git repository hygiene scanner for security engineers."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "PhinehasNarh" }]
keywords = ["security", "git", "hygiene", "secrets", "audit"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Security",
"Programming Language :: Python :: 3",
]
dependencies = []
[project.optional-dependencies]
dev = ["pytest>=8.4.2", "pytest-cov>=7.1.0", "ruff>=0.15.18"]
[project.scripts]
gitcollect = "gitcollect.cli:main"
[project.urls]
Homepage = "https://github.com/PhinehasNarh/git-collect"
Issues = "https://github.com/PhinehasNarh/git-collect/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
addopts = "-ra -q"
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py39"