diff options
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 36 |
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] | ||
| 2 | name = "async-crypto-pay-api" | ||
| 3 | description = "Async crypto pay api wrapper for t.me/cryptobot" | ||
| 4 | keywords = ["async", "api", "crypto", "crypto pay api", "cryptobot"] | ||
| 5 | authors = [{ name = "Tolmachev Igor", email = "me@igorek.dev" }] | ||
| 6 | maintainers = [{ name = "Tolmachev Igor", email = "me@igorek.dev" }] | ||
| 7 | dynamic = ["version"] | ||
| 8 | requires-python = ">=3.10" | ||
| 9 | readme = "README.md" | ||
| 10 | license = "LGPL-3.0-only" | ||
| 11 | license-files = ["LICENSE"] | ||
| 12 | classifiers = [ | ||
| 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 | ] | ||
| 25 | dependencies = ["aiohttp>=3.12.14", "pydantic>=2.11.7"] | ||
| 26 | |||
| 27 | [project.urls] | ||
| 28 | repository = "https://codeberg.org/igorechek06/async_crypto_pay_api" | ||
| 29 | documentation = "https://help.send.tg/en/articles/10279948-crypto-pay-api" | ||
| 30 | |||
| 31 | [build-system] | ||
| 32 | requires = ["hatchling"] | ||
| 33 | build-backend = "hatchling.build" | ||
| 34 | |||
| 35 | [tool.hatch.version] | ||
| 36 | path = "src/async_crypto_pay_api/__meta__.py" | ||
