arxo 0.0.1__py3-none-any.whl
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.
- arxo/__init__.py +3 -0
- arxo-0.0.1.dist-info/METADATA +38 -0
- arxo-0.0.1.dist-info/RECORD +6 -0
- arxo-0.0.1.dist-info/WHEEL +5 -0
- arxo-0.0.1.dist-info/licenses/LICENSE +21 -0
- arxo-0.0.1.dist-info/top_level.txt +1 -0
arxo/__init__.py
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: arxo
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Architecture tooling (placeholder)
|
|
5
|
+
License: MIT
|
|
6
|
+
Keywords: architecture,cli
|
|
7
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Requires-Python: >=3.8
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
License-File: LICENSE
|
|
13
|
+
Provides-Extra: dev
|
|
14
|
+
Requires-Dist: pytest; extra == "dev"
|
|
15
|
+
Dynamic: license-file
|
|
16
|
+
|
|
17
|
+
# arxo (PyPI placeholder)
|
|
18
|
+
|
|
19
|
+
Minimal Python package to stake the **arxo** name on [PyPI](https://pypi.org).
|
|
20
|
+
|
|
21
|
+
## Use as standalone repo
|
|
22
|
+
|
|
23
|
+
1. Copy this folder into a new repo (e.g. `arxo-io/arxo-sdk`).
|
|
24
|
+
2. Build and publish:
|
|
25
|
+
```bash
|
|
26
|
+
pip install build twine
|
|
27
|
+
python -m build
|
|
28
|
+
twine upload dist/*
|
|
29
|
+
```
|
|
30
|
+
Use your PyPI account (or token). First time: `pip install setuptools wheel` if needed.
|
|
31
|
+
|
|
32
|
+
## If the name "arxo" is taken
|
|
33
|
+
|
|
34
|
+
Rename in `pyproject.toml`: `name = "arxo-sdk"` (or `arxo-cli`). Then `pip install arxo-sdk`.
|
|
35
|
+
|
|
36
|
+
## Replace with real SDK
|
|
37
|
+
|
|
38
|
+
Add real API client, CLI entry point, or bridge to arch0; keep this as the published package.
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
arxo/__init__.py,sha256=3Rwb9QVEVFsuTq1XM3MyYp79QXO-PUarGQle-j9ViGA,96
|
|
2
|
+
arxo-0.0.1.dist-info/licenses/LICENSE,sha256=MXTau47A4pgFQVjIqFTuH9zQ_BglPPv1doiSBscfGsM,1056
|
|
3
|
+
arxo-0.0.1.dist-info/METADATA,sha256=6lxoXrHpBV_fVahRMO1ssVx824HR6aQdBtsRp8OQxPU,1090
|
|
4
|
+
arxo-0.0.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
5
|
+
arxo-0.0.1.dist-info/top_level.txt,sha256=a963EMlKF0kuaRoOq3k9CNUzUnyb6Ip9aXYZNVeOGKw,5
|
|
6
|
+
arxo-0.0.1.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) arxo
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
arxo
|