-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (75 loc) · 2.11 KB
/
Copy pathpyproject.toml
File metadata and controls
83 lines (75 loc) · 2.11 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
[build-system]
requires = ["hatchling>=1.27"]
build-backend = "hatchling.build"
[project]
name = "explain-codebase"
version = "0.2.1"
description = "Map repository architecture, dependencies, entry points, and change-risk signals from the command line."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "danyasync" },
]
keywords = [
"architecture",
"code-analysis",
"dependency-graph",
"developer-tools",
"onboarding",
"repository-analysis",
"static-analysis",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Version Control :: Git",
"Topic :: Utilities",
]
dependencies = [
"click>=8.1",
"networkx>=3.3",
"pathspec>=0.12",
"pydantic>=2.7",
"rich>=13.7",
"typer>=0.12",
]
[project.optional-dependencies]
dev = [
"build>=1.2",
"pytest>=8.2",
"readme-renderer[md]>=44",
"ruff>=0.9",
"twine>=6.0",
]
[project.scripts]
explain-codebase = "explain_codebase.cli.main:run"
[project.urls]
Homepage = "https://github.com/danyasync/explain-codebase"
Repository = "https://github.com/danyasync/explain-codebase"
Issues = "https://github.com/danyasync/explain-codebase/issues"
Changelog = "https://github.com/danyasync/explain-codebase/blob/main/CHANGELOG.md"
[tool.hatch.build.targets.wheel]
packages = ["explain_codebase"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
target-version = "py310"
line-length = 120
extend-exclude = ["fixtures"]
[tool.ruff.lint]
select = ["E", "F", "I", "B", "SIM"]
ignore = ["E501"]