wriftai 0.0.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.
- wriftai-0.0.0/PKG-INFO +12 -0
- wriftai-0.0.0/README.md +0 -0
- wriftai-0.0.0/pyproject.toml +14 -0
- wriftai-0.0.0/wriftai/__init__.py +0 -0
wriftai-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: wriftai
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Python client for WriftAI
|
|
5
|
+
Author: WriftAI
|
|
6
|
+
Requires-Python: >=3.11,<4.0
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
|
wriftai-0.0.0/README.md
ADDED
|
File without changes
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
[tool.poetry]
|
|
2
|
+
name = "wriftai"
|
|
3
|
+
version = "0.0.0"
|
|
4
|
+
description = "Python client for WriftAI"
|
|
5
|
+
authors = ["WriftAI"]
|
|
6
|
+
readme = "README.md"
|
|
7
|
+
|
|
8
|
+
[tool.poetry.dependencies]
|
|
9
|
+
python = "^3.11"
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
[build-system]
|
|
13
|
+
requires = ["poetry-core"]
|
|
14
|
+
build-backend = "poetry.core.masonry.api"
|
|
File without changes
|