initial commit
All checks were successful
Build and Upload Python Package / build (push) Successful in 52s
All checks were successful
Build and Upload Python Package / build (push) Successful in 52s
This commit is contained in:
32
pyproject.toml
Normal file
32
pyproject.toml
Normal 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",
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user