Initial release

This commit is contained in:
etienne-hd
2025-06-20 00:59:56 +02:00
commit 7de8d5bab2
24 changed files with 1227 additions and 0 deletions

29
pyproject.toml Normal file
View File

@@ -0,0 +1,29 @@
[project]
name = "lbc"
version = "1.0.0"
description = "Unofficial client for Leboncoin API"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.9"
authors = [
{name = "Etienne HODE", email = "hode.etienne@gmail.com"}
]
maintainers = [
{name = "Etienne HODE", email = "hode.etienne@gmail.com"}
]
dependencies = [
"curl_cffi==0.11.3"
]
keywords = ["lbc", "leboncoin", "wrapper", "api"]
[project.urls]
Homepage = "https://github.com/etienne-hd/lbc"
Repository = "https://github.com/etienne-hd/lbc"
Changelog = "https://github.com/etienne-hd/lbc/blob/main/CHANGELOG.md"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"