104 lines
2.3 KiB
TOML
104 lines
2.3 KiB
TOML
[project]
|
|
name = "paroles-net-scraper"
|
|
version = "0.3.2"
|
|
description = "A Python package to fetch song lyrics from paroles.net"
|
|
authors = [
|
|
{name = "Rene Luria", email = "rene@luria.ch"}
|
|
]
|
|
readme = "README.md"
|
|
license = {text = "MIT"}
|
|
dependencies = [
|
|
"requests>=2.25.1",
|
|
"beautifulsoup4>=4.9.3"
|
|
]
|
|
requires-python = ">=3.9"
|
|
|
|
[project.optional-dependencies]
|
|
test = [
|
|
"pytest>=6.0"
|
|
]
|
|
dev = [
|
|
"ruff>=0.12.8",
|
|
"pre-commit>=4.3.0"
|
|
]
|
|
|
|
[project.scripts]
|
|
paroles-scraper = "paroles_net_scraper.cli:main"
|
|
|
|
[project.urls]
|
|
Homepage = "https://gitea.parano.ch/herel/paroles-net-scraper"
|
|
Repository = "https://gitea.parano.ch/herel/paroles-net-scraper"
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=45", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["paroles_net_scraper*", "scripts*"]
|
|
|
|
[tool.setuptools.package-data]
|
|
paroles_net_scraper = ["py.typed"]
|
|
|
|
[tool.ruff]
|
|
# Enable pycodestyle (`E`) and Pyflakes (`F`) codes by default.
|
|
lint.select = ["E", "F", "I", "UP", "B", "SIM", "PL"]
|
|
lint.extend-ignore = [
|
|
"D203", # one-blank-line-before-class (incompatible with D211)
|
|
"D212", # multi-line-summary-first-line (incompatible with D213)
|
|
]
|
|
|
|
# Allow autofix for all enabled rules (when `--fix`) is provided.
|
|
lint.fixable = ["ALL"]
|
|
lint.unfixable = []
|
|
|
|
# Exclude a variety of commonly ignored directories.
|
|
exclude = [
|
|
".bzr",
|
|
".direnv",
|
|
".eggs",
|
|
".git",
|
|
".hg",
|
|
".mypy_cache",
|
|
".nox",
|
|
".pants.d",
|
|
".pytype",
|
|
".ruff_cache",
|
|
".svn",
|
|
".tox",
|
|
".venv",
|
|
"__pypackages__",
|
|
"_build",
|
|
"buck-out",
|
|
"build",
|
|
"dist",
|
|
"node_modules",
|
|
"venv",
|
|
]
|
|
|
|
# Same as Black.
|
|
line-length = 88
|
|
|
|
# Allow unused variables when underscore-prefixed.
|
|
lint.dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
|
|
|
|
# Assume Python 3.7
|
|
target-version = "py37"
|
|
|
|
[tool.ruff.lint.mccabe]
|
|
# Unlike Flake8, default to a complexity level of 10.
|
|
max-complexity = 10
|
|
|
|
[tool.ruff.format]
|
|
# Like Black, use double quotes for strings.
|
|
quote-style = "double"
|
|
|
|
# Like Black, indent with spaces, rather than tabs.
|
|
indent-style = "space"
|
|
|
|
# Like Black, respect magic trailing commas.
|
|
skip-magic-trailing-comma = false
|
|
|
|
# Like Black, automatically detect the appropriate line ending.
|
|
line-ending = "auto"
|