tollapi 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.
- tollapi-0.0.1/PKG-INFO +22 -0
- tollapi-0.0.1/README.md +7 -0
- tollapi-0.0.1/pyproject.toml +24 -0
- tollapi-0.0.1/src/tollapi/__init__.py +3 -0
- tollapi-0.0.1/uv.lock +8 -0
tollapi-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tollapi
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Drop-in USDC billing for APIs. Two lines of code, pay-per-request.
|
|
5
|
+
Project-URL: Homepage, https://tollapi.dev
|
|
6
|
+
Author-email: SynthInsight Labs <admin@synthinsightlabs.com>
|
|
7
|
+
License-Expression: MIT
|
|
8
|
+
Keywords: API,USDC,agents,gateway,micropayments,payments,tollbooth,x402
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Requires-Python: >=3.10
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# TollAPI
|
|
17
|
+
|
|
18
|
+
Drop-in USDC billing for APIs. Two lines of code, pay-per-request.
|
|
19
|
+
|
|
20
|
+
**Status:** In development.
|
|
21
|
+
|
|
22
|
+
Coming soon from [SynthInsight Labs](https://tollapi.dev).
|
tollapi-0.0.1/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "tollapi"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Drop-in USDC billing for APIs. Two lines of code, pay-per-request."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "MIT"
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "SynthInsight Labs", email = "admin@synthinsightlabs.com" },
|
|
14
|
+
]
|
|
15
|
+
keywords = ["x402", "payments", "USDC", "API", "gateway", "tollbooth", "agents", "micropayments"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 1 - Planning",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"License :: OSI Approved :: MIT License",
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[project.urls]
|
|
24
|
+
Homepage = "https://tollapi.dev"
|