Initial commit

- Python package to fetch song lyrics from paroles.net
- Web scraping functionality with requests and BeautifulSoup4
- Command-line interface for easy usage
- Comprehensive test suite with pytest
- GitLab CI configuration with uv support
- Package metadata and dependencies in pyproject.toml
- Documentation and usage instructions
This commit is contained in:
2025-08-11 14:21:12 +02:00
commit af71f5e80a
11 changed files with 989 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
[project]
name = "paroles-net-scraper"
version = "0.1.0"
description = "A Python package to fetch song lyrics from paroles.net"
authors = [
{name = "Rene Luria", email = "rene.luria@infomaniak.com"}
]
readme = "README.md"
license = {text = "MIT"}
dependencies = [
"requests>=2.25.1",
"beautifulsoup4>=4.9.3"
]
requires-python = ">=3.7"
[project.optional-dependencies]
test = [
"pytest>=6.0"
]
[project.scripts]
paroles-scraper = "paroles_net_scraper.cli:main"
[project.urls]
Homepage = "https://github.com/yourusername/paroles-net-scraper"
Repository = "https://github.com/yourusername/paroles-net-scraper"
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["paroles_net_scraper*"]
[tool.setuptools.package-data]
paroles_net_scraper = ["py.typed"]