-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
35 lines (32 loc) · 956 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
31
32
33
34
35
[project]
name = "tonpay"
description = "SDK for crypto payment system Tonpay"
version = "0.1.2"
authors = [
{ name = "Arterialist", email = "[email protected]" }
]
dependencies = []
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/TheTonpay/tonpay-python-sdk"
"Bug Tracker" = "https://github.com/TheTonpay/tonpay-python-sdk/issues"
"Documentation" = "https://tonpay.gitbook.io/tonpay-sdk/"
"Technical Support" = "https://t.me/+zdOo27FJZgg0ZGUy"
"Website" = "https://thetonpay.app/"
"Merchant Portal" = "https://business.thetonpay.app/"
[build-system]
requires = [
"setuptools>=61.0",
"ton==0.26",
"tonsdk==1.0.13",
"tontools==2.1.0",
"requests~=2.31.0"
]
build-backend = "setuptools.build_meta"