a1fd24c92d
All checks were successful
Build and Upload Python Package / build (push) Successful in 52s
33 lines
758 B
TOML
33 lines
758 B
TOML
[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",
|
|
]
|
|
|