-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (70 loc) · 2.11 KB
/
pyproject.toml
File metadata and controls
79 lines (70 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
[project]
name = "repodoc"
version = "0.2.0"
description = "A Copilot-first CLI tool for repository health analysis"
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "Plamen Ivanov", email = "paco.iwanow@gmail.com" }]
keywords = [
"copilot",
"cli",
"repository",
"analysis",
"health",
"linter",
"code-quality",
"developer-tools",
]
requires-python = ">=3.11"
dependencies = ["typer>=0.12.0", "pydantic>=2.0.0", "rich>=13.0.0"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://github.com/k1lgor/RepoDoctor"
Repository = "https://github.com/k1lgor/RepoDoctor"
Issues = "https://github.com/k1lgor/RepoDoctor/issues"
Changelog = "https://github.com/k1lgor/RepoDoctor/blob/main/CHANGELOG.md"
Documentation = "https://github.com/k1lgor/RepoDoctor#readme"
[project.scripts]
repodoc = "repodoc.cli:app"
[project.optional-dependencies]
dev = ["ruff>=0.8.0", "ty>=0.0.1", "pytest>=8.0.0", "pytest-cov>=6.0.0"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"N", # pep8-naming
"UP", # pyupgrade
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"SIM", # flake8-simplify
]
ignore = []
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.ty]
# Type checking configuration for Astral's ty
# See: https://docs.astral.sh/ty/
[dependency-groups]
dev = ["ty>=0.0.1", "pytest>=9.0.2", "pytest-cov>=7.0.0", "ruff>=0.15.0"]