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
36
|
[project]
name = "async-crypto-pay-api"
description = "Async crypto pay api wrapper for t.me/cryptobot"
keywords = ["async", "api", "crypto", "crypto pay api", "cryptobot"]
authors = [{ name = "Tolmachev Igor", email = "me@igorek.dev" }]
maintainers = [{ name = "Tolmachev Igor", email = "me@igorek.dev" }]
dynamic = ["version"]
requires-python = ">=3.10"
readme = "README.md"
license = "LGPL-3.0-only"
license-files = ["LICENSE"]
classifiers = [
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Framework :: AsyncIO",
"Typing :: Typed",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.15",
]
dependencies = ["aiohttp>=3.12.14", "pydantic>=2.11.7"]
[project.urls]
repository = "https://codeberg.org/igorechek06/async_crypto_pay_api"
documentation = "https://help.send.tg/en/articles/10279948-crypto-pay-api"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/async_crypto_pay_api/__meta__.py"
|