aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorTolmachev Igor <me@igorek.dev>2025-07-17 15:18:44 +0900
committerTolmachev Igor <me@igorek.dev>2025-07-17 15:31:54 +0900
commit166b2faed2ee31970ca77f03d0c2095b3482ad26 (patch)
tree51cc5ea76ef9c64672ff5b231890b9512c8e21e4 /pyproject.toml
parent69296e9899d28a6a5e64708cbcdc57a59a54fa41 (diff)
downloadasync_crypto_pay_api-166b2faed2ee31970ca77f03d0c2095b3482ad26.tar.gz
async_crypto_pay_api-166b2faed2ee31970ca77f03d0c2095b3482ad26.zip
Release v.1.0.0
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml36
1 files changed, 36 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..5851faf
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,36 @@
1[project]
2name = "async-crypto-pay-api"
3description = "Async crypto pay api wrapper for t.me/cryptobot"
4keywords = ["async", "api", "crypto", "crypto pay api", "cryptobot"]
5authors = [{ name = "Tolmachev Igor", email = "me@igorek.dev" }]
6maintainers = [{ name = "Tolmachev Igor", email = "me@igorek.dev" }]
7dynamic = ["version"]
8requires-python = ">=3.10"
9readme = "README.md"
10license = "LGPL-3.0-only"
11license-files = ["LICENSE"]
12classifiers = [
13 "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
14 "Framework :: AsyncIO",
15 "Typing :: Typed",
16 "Programming Language :: Python",
17 "Programming Language :: Python :: 3",
18 "Programming Language :: Python :: 3.10",
19 "Programming Language :: Python :: 3.11",
20 "Programming Language :: Python :: 3.12",
21 "Programming Language :: Python :: 3.13",
22 "Programming Language :: Python :: 3.14",
23 "Programming Language :: Python :: 3.15",
24]
25dependencies = ["aiohttp>=3.12.14", "pydantic>=2.11.7"]
26
27[project.urls]
28repository = "https://codeberg.org/igorechek06/async_crypto_pay_api"
29documentation = "https://help.send.tg/en/articles/10279948-crypto-pay-api"
30
31[build-system]
32requires = ["hatchling"]
33build-backend = "hatchling.build"
34
35[tool.hatch.version]
36path = "src/async_crypto_pay_api/__meta__.py"