alltoken-ai 0.2.0__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,46 @@
|
|
|
1
|
+
# Python
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
*.so
|
|
6
|
+
*.egg
|
|
7
|
+
*.egg-info/
|
|
8
|
+
.eggs/
|
|
9
|
+
|
|
10
|
+
# Build / dist
|
|
11
|
+
build/
|
|
12
|
+
dist/
|
|
13
|
+
wheels/
|
|
14
|
+
*.whl
|
|
15
|
+
|
|
16
|
+
# Virtualenvs
|
|
17
|
+
.venv/
|
|
18
|
+
venv/
|
|
19
|
+
env/
|
|
20
|
+
ENV/
|
|
21
|
+
|
|
22
|
+
# Test / coverage
|
|
23
|
+
.pytest_cache/
|
|
24
|
+
.coverage
|
|
25
|
+
.coverage.*
|
|
26
|
+
htmlcov/
|
|
27
|
+
.tox/
|
|
28
|
+
.nox/
|
|
29
|
+
coverage.xml
|
|
30
|
+
|
|
31
|
+
# Type checkers
|
|
32
|
+
.mypy_cache/
|
|
33
|
+
.pyright/
|
|
34
|
+
.pytype/
|
|
35
|
+
|
|
36
|
+
# Linters
|
|
37
|
+
.ruff_cache/
|
|
38
|
+
|
|
39
|
+
# Env
|
|
40
|
+
.env
|
|
41
|
+
.env.local
|
|
42
|
+
|
|
43
|
+
# OS / editor
|
|
44
|
+
.DS_Store
|
|
45
|
+
.vscode/
|
|
46
|
+
.idea/
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: alltoken-ai
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: Alias package for alltoken — installs the official AllToken Python SDK.
|
|
5
|
+
Project-URL: Homepage, https://alltoken.ai
|
|
6
|
+
Project-URL: Repository, https://github.com/alltoken-ai/alltoken-python
|
|
7
|
+
Author-email: AllToken <dev@alltoken.ai>
|
|
8
|
+
License: MIT
|
|
9
|
+
Keywords: ai,alltoken,anthropic,api,llm,openai
|
|
10
|
+
Requires-Python: >=3.10
|
|
11
|
+
Requires-Dist: alltoken>=0.2.0
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# alltoken-ai
|
|
15
|
+
|
|
16
|
+
This is an alias package that installs [alltoken](https://pypi.org/project/alltoken/), the official Python SDK for [AllToken](https://alltoken.ai).
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
pip install alltoken-ai
|
|
20
|
+
# or equivalently:
|
|
21
|
+
pip install alltoken
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
See the [alltoken package](https://pypi.org/project/alltoken/) for full documentation.
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# alltoken-ai
|
|
2
|
+
|
|
3
|
+
This is an alias package that installs [alltoken](https://pypi.org/project/alltoken/), the official Python SDK for [AllToken](https://alltoken.ai).
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
pip install alltoken-ai
|
|
7
|
+
# or equivalently:
|
|
8
|
+
pip install alltoken
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
See the [alltoken package](https://pypi.org/project/alltoken/) for full documentation.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "alltoken-ai"
|
|
7
|
+
version = "0.2.0"
|
|
8
|
+
description = "Alias package for alltoken — installs the official AllToken Python SDK."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "MIT" }
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
authors = [{ name = "AllToken", email = "dev@alltoken.ai" }]
|
|
13
|
+
keywords = ["alltoken", "openai", "anthropic", "llm", "ai", "api"]
|
|
14
|
+
dependencies = ["alltoken>=0.2.0"]
|
|
15
|
+
|
|
16
|
+
[project.urls]
|
|
17
|
+
Homepage = "https://alltoken.ai"
|
|
18
|
+
Repository = "https://github.com/alltoken-ai/alltoken-python"
|
|
19
|
+
|
|
20
|
+
[tool.hatch.build.targets.wheel]
|
|
21
|
+
packages = ["src/alltoken_ai"]
|