-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (27 loc) · 1005 Bytes
/
pyproject.toml
File metadata and controls
29 lines (27 loc) · 1005 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[project]
name = "wallhavenapi" # This must be unique on PyPI
version = "0.1.0" # Increment with each release
description = "A Python wrapper for the Wallhaven.cc API v1."
readme = "README.md"
requires-python = ">=3.8"
license = { text = "MIT" }
authors = [
{ name = "Ray Cadle", email = "93884664+raycadle@users.noreply.github.com" }
]
keywords = ["wallhaven", "api", "wallpaper", "image", "wrapper"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Topic :: Multimedia :: Graphics"
]
dependencies = ["requests>=2.0"]
[project.urls]
Homepage = "https://github.com/raycadle/WallhavenAPI"
Repository = "https://github.com/raycadle/WallhavenAPI"
Issues = "https://github.com/raycadle/WallhavenAPI/issues"
[build-system]
requires = ["setuptools>=61.0,<70", "wheel"]
build-backend = "setuptools.build_meta"