initial commit
All checks were successful
Build and Upload Python Package / build (push) Successful in 52s

This commit is contained in:
ksyasuda
2024-09-07 19:34:48 -07:00
commit a1fd24c92d
10 changed files with 483 additions and 0 deletions

32
pyproject.toml Normal file
View File

@@ -0,0 +1,32 @@
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "wallabag-api-client"
version = "0.0.1"
description = "A Python client to interact with the Wallabag API"
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "sudacode", email = "suda@sudacode.com" }
]
dependencies = [
"requests>=2.20.0"
]
requires-python = ">=3.7"
[project.urls]
"Homepage" = "https://gitea.suda.codes/sudacode/wallabag-api-client"
"Source" = "https://gitea.suda.codes/sudacode/wallabag-api-client"
"Issue Tracker" = "https://gitea.suda.codes/sudacode/wallabag-api-client/issues"
[tool.setuptools.packages.find]
where = ["src"]
[project.optional-dependencies]
dev = [
"black",
"pytest",
]