-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 867 Bytes
/
pyproject.toml
File metadata and controls
30 lines (27 loc) · 867 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
30
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pixelapi"
version = "0.1.0"
description = "Official Python SDK for PixelAPI - AI Image Processing API"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.8"
authors = [
{name = "PixelAPI", email = "support@pixelapi.dev"}
]
keywords = ["image", "api", "ai", "background-removal", "image-generation", "upscaling"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
dependencies = ["requests>=2.25.0"]
[project.urls]
Homepage = "https://pixelapi.dev"
Documentation = "https://pixelapi.dev/docs"
Repository = "https://github.com/pixelapi/pixelapi-python"
[tool.setuptools.packages.find]
where = ["."]