forked from aorzh/liqpay-sdk-python3
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
30 lines (27 loc) · 878 Bytes
/
pyproject.toml
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>=61.0.0", "wheel", "aiohttp"]
build-backend = "setuptools.build_meta"
[project]
name = "aioliqpay"
version = "1.0.0"
description = "Asyncio LiqPay SDK for Python"
readme = "README.md"
authors = [{ name = "toxazhl", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
keywords = ["aioliqpay", "liqpay", "asyncio", "sdk"]
dependencies = [
"aiohttp",
]
requires-python = ">=3.6"
[project.optional-dependencies]
dev = ["black", "bumpver", "isort", "pip-tools", "pytest"]
[project.urls]
Homepage = "https://github.com/toxazhl/aioliqpay"