-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
103 lines (92 loc) · 2.43 KB
/
Copy pathpyproject.toml
File metadata and controls
103 lines (92 loc) · 2.43 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[build-system]
requires = ["setuptools>=68", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "github-repo-auditor"
dynamic = ["version"]
description = "Automated GitHub portfolio auditor with 12 analysis dimensions"
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [{ name = "Saag Patel" }]
keywords = [
"github",
"portfolio",
"audit",
"repository-analysis",
"developer-tools",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Utilities",
]
dependencies = [
"requests>=2.31.0",
"python-dateutil>=2.8.0",
"openpyxl>=3.1.0",
"pyyaml>=6.0",
"radon>=6.0.0",
"rich>=13.0",
"anthropic>=0.40.0",
"fpdf2>=2.7.0",
"httpx>=0.27",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"ruff>=0.4",
"mypy>=1.10",
"mutmut>=2.5",
"responses>=0.25",
"types-PyYAML>=6.0",
]
config = ["pyyaml>=6.0"]
semantic = [
"sqlite-vec>=0.1.0",
"sentence-transformers>=3.0",
]
serve = [
"fastapi>=0.115",
"uvicorn[standard]>=0.30",
"jinja2>=3.1",
"python-multipart>=0.0.9",
]
build = [
"shiv>=1.0",
"build>=1.0",
"twine>=5.0",
]
[project.urls]
Homepage = "https://github.com/saagpatel/GithubRepoAuditor"
Repository = "https://github.com/saagpatel/GithubRepoAuditor"
"Bug Tracker" = "https://github.com/saagpatel/GithubRepoAuditor/issues"
Changelog = "https://github.com/saagpatel/GithubRepoAuditor/blob/main/CHANGELOG.md"
Documentation = "https://github.com/saagpatel/GithubRepoAuditor#readme"
[project.scripts]
audit = "src.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["src*"]
[tool.setuptools.package-data]
"src" = ["*.json", "*.yaml", "*.yml", "*.html", "*.jinja2", "*.j2"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
[tool.mutmut]
paths_to_mutate = "src/auto_apply.py,src/scorer.py"
runner = "python3.13 -m pytest -q -p no:cacheprovider -x tests/test_auto_apply.py tests/test_scorer.py"
tests_dir = "tests/"
[tool.ruff]
target-version = "py311"
[tool.ruff.lint]
ignore = ["E501"]
[tool.setuptools_scm]
fallback_version = "0.1.4"