absolutepay 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: absolutepay
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Official AbsolutePay SDK — accept crypto payments, send payouts, and reconcile.
|
|
5
|
+
Project-URL: Homepage, https://absolutepay.io
|
|
6
|
+
Project-URL: Documentation, https://docs.absolutepay.io
|
|
7
|
+
Author: AbsolutePay
|
|
8
|
+
License-Expression: LicenseRef-Proprietary
|
|
9
|
+
Keywords: absolutepay,api,crypto,payments,payouts,sdk,stablecoin
|
|
10
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Topic :: Office/Business :: Financial
|
|
13
|
+
Requires-Python: >=3.9
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# absolutepay
|
|
17
|
+
|
|
18
|
+
Official Python SDK for [AbsolutePay](https://absolutepay.io) — accept crypto payments, send
|
|
19
|
+
payouts, and reconcile. Early placeholder that reserves the name; full client on the way.
|
|
20
|
+
|
|
21
|
+
- **Docs:** https://docs.absolutepay.io
|
|
22
|
+
- **API base:** `https://api.absolutepay.io`
|
|
23
|
+
|
|
24
|
+
```python
|
|
25
|
+
import absolutepay
|
|
26
|
+
print(absolutepay.API_BASE_URL)
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
© AbsolutePay. Proprietary.
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# absolutepay
|
|
2
|
+
|
|
3
|
+
Official Python SDK for [AbsolutePay](https://absolutepay.io) — accept crypto payments, send
|
|
4
|
+
payouts, and reconcile. Early placeholder that reserves the name; full client on the way.
|
|
5
|
+
|
|
6
|
+
- **Docs:** https://docs.absolutepay.io
|
|
7
|
+
- **API base:** `https://api.absolutepay.io`
|
|
8
|
+
|
|
9
|
+
```python
|
|
10
|
+
import absolutepay
|
|
11
|
+
print(absolutepay.API_BASE_URL)
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
© AbsolutePay. Proprietary.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "absolutepay"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Official AbsolutePay SDK — accept crypto payments, send payouts, and reconcile."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = "LicenseRef-Proprietary"
|
|
12
|
+
authors = [{ name = "AbsolutePay" }]
|
|
13
|
+
keywords = ["absolutepay", "payments", "crypto", "stablecoin", "payouts", "api", "sdk"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 2 - Pre-Alpha",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"Topic :: Office/Business :: Financial",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[project.urls]
|
|
21
|
+
Homepage = "https://absolutepay.io"
|
|
22
|
+
Documentation = "https://docs.absolutepay.io"
|
|
23
|
+
|
|
24
|
+
[tool.hatch.build.targets.wheel]
|
|
25
|
+
packages = ["absolutepay"]
|