Skip to content

Commit 57d03ef

Browse files
committed
Deploy: add pyproject.toml for module package
1 parent 4622fc8 commit 57d03ef

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

pyproject.toml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
[project]
2+
name = "wallhavenapi" # This must be unique on PyPI
3+
version = "0.1.0" # Increment with each release
4+
description = "A Python wrapper for the Wallhaven.cc API v1."
5+
readme = "README.md"
6+
requires-python = ">=3.8"
7+
license = { text = "MIT" }
8+
authors = [
9+
{ name = "Ray Cadle", email = "[email protected]" }
10+
]
11+
keywords = ["wallhaven", "api", "wallpaper", "image", "wrapper"]
12+
classifiers = [
13+
"Programming Language :: Python :: 3",
14+
"License :: OSI Approved :: MIT License",
15+
"Operating System :: OS Independent",
16+
"Intended Audience :: Developers",
17+
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
18+
"Topic :: Multimedia :: Graphics"
19+
]
20+
dependencies = ["requests>=2.0"]
21+
22+
[project.urls]
23+
Homepage = "https://github.com/raycadle/WallhavenAPI"
24+
Repository = "https://github.com/raycadle/WallhavenAPI"
25+
Issues = "https://github.com/raycadle/WallhavenAPI/issues"
26+
27+
[build-system]
28+
requires = ["setuptools>=61.0"]
29+
build-backend = "setuptools.build_meta"

0 commit comments

Comments
 (0)