62 lines
1.7 KiB
TOML
62 lines
1.7 KiB
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "claude-scripts"
|
|
version = "0.1.0"
|
|
description = "A comprehensive Python code quality analysis toolkit for detecting duplicates, complexity metrics, and modernization opportunities"
|
|
authors = [{name = "Your Name", email = "your.email@example.com"}]
|
|
readme = "README.md"
|
|
license = {file = "LICENSE"}
|
|
requires-python = ">=3.12"
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Topic :: Software Development :: Quality Assurance",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
]
|
|
keywords = ["code-quality", "static-analysis", "duplicate-detection", "complexity", "refactoring"]
|
|
dependencies = [
|
|
"click>=8.0.0",
|
|
"pyyaml>=6.0",
|
|
"pydantic>=2.0.0",
|
|
"radon>=6.0.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=7.0.0",
|
|
"pytest-cov>=4.0.0",
|
|
"ruff>=0.1.0",
|
|
"mypy>=1.5.0",
|
|
"pre-commit>=3.0.0",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/yourusername/claude-scripts"
|
|
Repository = "https://github.com/yourusername/claude-scripts"
|
|
Issues = "https://github.com/yourusername/claude-scripts/issues"
|
|
Documentation = "https://github.com/yourusername/claude-scripts#readme"
|
|
|
|
[project.scripts]
|
|
claude-quality = "quality.cli.main:cli"
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
exclude = [
|
|
"/.github",
|
|
"/docs",
|
|
"/.vscode",
|
|
"/.pytest_cache",
|
|
"/.mypy_cache",
|
|
"/.ruff_cache",
|
|
]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/quality"]
|