centori 0.1.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.
- centori-0.1.0/LICENSE +7 -0
- centori-0.1.0/PKG-INFO +99 -0
- centori-0.1.0/README.md +68 -0
- centori-0.1.0/pyproject.toml +41 -0
- centori-0.1.0/setup.cfg +4 -0
- centori-0.1.0/src/centori/__init__.py +14 -0
- centori-0.1.0/src/centori/_version.py +1 -0
- centori-0.1.0/src/centori.egg-info/PKG-INFO +99 -0
- centori-0.1.0/src/centori.egg-info/SOURCES.txt +10 -0
- centori-0.1.0/src/centori.egg-info/dependency_links.txt +1 -0
- centori-0.1.0/src/centori.egg-info/top_level.txt +1 -0
- centori-0.1.0/tests/test_centori.py +9 -0
centori-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
Copyright (c) 2026 Centori.
|
|
2
|
+
|
|
3
|
+
All rights reserved.
|
|
4
|
+
|
|
5
|
+
This software and associated documentation files are proprietary to Centori.
|
|
6
|
+
No permission is granted to use, copy, modify, distribute, sublicense, or sell
|
|
7
|
+
copies of this software without prior written permission from Centori.
|
centori-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: centori
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Official Python package for Centori SDKs, runtime clients, and developer tooling.
|
|
5
|
+
Author: Centori
|
|
6
|
+
License: Copyright (c) 2026 Centori.
|
|
7
|
+
|
|
8
|
+
All rights reserved.
|
|
9
|
+
|
|
10
|
+
This software and associated documentation files are proprietary to Centori.
|
|
11
|
+
No permission is granted to use, copy, modify, distribute, sublicense, or sell
|
|
12
|
+
copies of this software without prior written permission from Centori.
|
|
13
|
+
Project-URL: Homepage, https://centori.ai
|
|
14
|
+
Project-URL: Repository, https://github.com/centori-ai/centori-python
|
|
15
|
+
Project-URL: Issues, https://github.com/centori-ai/centori-python/issues
|
|
16
|
+
Keywords: centori,sdk,runtime,agents,automation
|
|
17
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
18
|
+
Classifier: Intended Audience :: Developers
|
|
19
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
20
|
+
Classifier: Operating System :: OS Independent
|
|
21
|
+
Classifier: Programming Language :: Python :: 3
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
26
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
27
|
+
Requires-Python: >=3.10
|
|
28
|
+
Description-Content-Type: text/markdown
|
|
29
|
+
License-File: LICENSE
|
|
30
|
+
Dynamic: license-file
|
|
31
|
+
|
|
32
|
+
# Centori
|
|
33
|
+
|
|
34
|
+
Official Python package for Centori.
|
|
35
|
+
|
|
36
|
+
This is an early package for future Centori Python SDK, CLI, runtime client, and integration tooling.
|
|
37
|
+
|
|
38
|
+
## Install
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
pip install centori
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
## Usage
|
|
45
|
+
|
|
46
|
+
```python
|
|
47
|
+
import centori
|
|
48
|
+
|
|
49
|
+
print(centori.__version__)
|
|
50
|
+
print(centori.info())
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
## Development
|
|
54
|
+
|
|
55
|
+
Create a virtual environment:
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
python -m venv .venv
|
|
59
|
+
source .venv/bin/activate
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
Install build tools:
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
python -m pip install --upgrade pip build twine pytest
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
Run tests:
|
|
69
|
+
|
|
70
|
+
```bash
|
|
71
|
+
python -m pytest
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
Build:
|
|
75
|
+
|
|
76
|
+
```bash
|
|
77
|
+
python -m build
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
Check distribution files:
|
|
81
|
+
|
|
82
|
+
```bash
|
|
83
|
+
python -m twine check dist/*
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
Publish to TestPyPI first:
|
|
87
|
+
|
|
88
|
+
```bash
|
|
89
|
+
python -m twine upload --repository testpypi dist/*
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
Publish to PyPI:
|
|
93
|
+
|
|
94
|
+
```bash
|
|
95
|
+
python -m twine upload dist/*
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
Use a PyPI API token instead of your account password when Twine asks for credentials.
|
|
99
|
+
For username, enter `__token__`. For password, paste the API token.
|
centori-0.1.0/README.md
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
# Centori
|
|
2
|
+
|
|
3
|
+
Official Python package for Centori.
|
|
4
|
+
|
|
5
|
+
This is an early package for future Centori Python SDK, CLI, runtime client, and integration tooling.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
pip install centori
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
```python
|
|
16
|
+
import centori
|
|
17
|
+
|
|
18
|
+
print(centori.__version__)
|
|
19
|
+
print(centori.info())
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Development
|
|
23
|
+
|
|
24
|
+
Create a virtual environment:
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
python -m venv .venv
|
|
28
|
+
source .venv/bin/activate
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
Install build tools:
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
python -m pip install --upgrade pip build twine pytest
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
Run tests:
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
python -m pytest
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
Build:
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
python -m build
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
Check distribution files:
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
python -m twine check dist/*
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
Publish to TestPyPI first:
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
python -m twine upload --repository testpypi dist/*
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
Publish to PyPI:
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
python -m twine upload dist/*
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
Use a PyPI API token instead of your account password when Twine asks for credentials.
|
|
68
|
+
For username, enter `__token__`. For password, paste the API token.
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=77.0.3"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "centori"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Official Python package for Centori SDKs, runtime clients, and developer tooling."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = { file = "LICENSE" }
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "Centori" }
|
|
14
|
+
]
|
|
15
|
+
keywords = ["centori", "sdk", "runtime", "agents", "automation"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 2 - Pre-Alpha",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"License :: OSI Approved :: MIT License",
|
|
20
|
+
"Operating System :: OS Independent",
|
|
21
|
+
"Programming Language :: Python :: 3",
|
|
22
|
+
"Programming Language :: Python :: 3.10",
|
|
23
|
+
"Programming Language :: Python :: 3.11",
|
|
24
|
+
"Programming Language :: Python :: 3.12",
|
|
25
|
+
"Programming Language :: Python :: 3.13",
|
|
26
|
+
"Topic :: Software Development :: Libraries :: Python Modules"
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
dependencies = []
|
|
30
|
+
|
|
31
|
+
[project.urls]
|
|
32
|
+
Homepage = "https://centori.ai"
|
|
33
|
+
Repository = "https://github.com/centori-ai/centori-python"
|
|
34
|
+
Issues = "https://github.com/centori-ai/centori-python/issues"
|
|
35
|
+
|
|
36
|
+
[tool.setuptools.packages.find]
|
|
37
|
+
where = ["src"]
|
|
38
|
+
|
|
39
|
+
[tool.pytest.ini_options]
|
|
40
|
+
pythonpath = ["src"]
|
|
41
|
+
testpaths = ["tests"]
|
centori-0.1.0/setup.cfg
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"""Centori Python package.
|
|
2
|
+
|
|
3
|
+
This package is intentionally small for the first public release.
|
|
4
|
+
Future releases may include SDKs, runtime clients, CLI helpers, and integration tooling.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
from ._version import __version__
|
|
8
|
+
|
|
9
|
+
__all__ = ["__version__", "info"]
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
def info() -> str:
|
|
13
|
+
"""Return a short description of the package."""
|
|
14
|
+
return "Centori Python SDK placeholder package."
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.1.0"
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: centori
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Official Python package for Centori SDKs, runtime clients, and developer tooling.
|
|
5
|
+
Author: Centori
|
|
6
|
+
License: Copyright (c) 2026 Centori.
|
|
7
|
+
|
|
8
|
+
All rights reserved.
|
|
9
|
+
|
|
10
|
+
This software and associated documentation files are proprietary to Centori.
|
|
11
|
+
No permission is granted to use, copy, modify, distribute, sublicense, or sell
|
|
12
|
+
copies of this software without prior written permission from Centori.
|
|
13
|
+
Project-URL: Homepage, https://centori.ai
|
|
14
|
+
Project-URL: Repository, https://github.com/centori-ai/centori-python
|
|
15
|
+
Project-URL: Issues, https://github.com/centori-ai/centori-python/issues
|
|
16
|
+
Keywords: centori,sdk,runtime,agents,automation
|
|
17
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
18
|
+
Classifier: Intended Audience :: Developers
|
|
19
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
20
|
+
Classifier: Operating System :: OS Independent
|
|
21
|
+
Classifier: Programming Language :: Python :: 3
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
26
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
27
|
+
Requires-Python: >=3.10
|
|
28
|
+
Description-Content-Type: text/markdown
|
|
29
|
+
License-File: LICENSE
|
|
30
|
+
Dynamic: license-file
|
|
31
|
+
|
|
32
|
+
# Centori
|
|
33
|
+
|
|
34
|
+
Official Python package for Centori.
|
|
35
|
+
|
|
36
|
+
This is an early package for future Centori Python SDK, CLI, runtime client, and integration tooling.
|
|
37
|
+
|
|
38
|
+
## Install
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
pip install centori
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
## Usage
|
|
45
|
+
|
|
46
|
+
```python
|
|
47
|
+
import centori
|
|
48
|
+
|
|
49
|
+
print(centori.__version__)
|
|
50
|
+
print(centori.info())
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
## Development
|
|
54
|
+
|
|
55
|
+
Create a virtual environment:
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
python -m venv .venv
|
|
59
|
+
source .venv/bin/activate
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
Install build tools:
|
|
63
|
+
|
|
64
|
+
```bash
|
|
65
|
+
python -m pip install --upgrade pip build twine pytest
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
Run tests:
|
|
69
|
+
|
|
70
|
+
```bash
|
|
71
|
+
python -m pytest
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
Build:
|
|
75
|
+
|
|
76
|
+
```bash
|
|
77
|
+
python -m build
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
Check distribution files:
|
|
81
|
+
|
|
82
|
+
```bash
|
|
83
|
+
python -m twine check dist/*
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
Publish to TestPyPI first:
|
|
87
|
+
|
|
88
|
+
```bash
|
|
89
|
+
python -m twine upload --repository testpypi dist/*
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
Publish to PyPI:
|
|
93
|
+
|
|
94
|
+
```bash
|
|
95
|
+
python -m twine upload dist/*
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
Use a PyPI API token instead of your account password when Twine asks for credentials.
|
|
99
|
+
For username, enter `__token__`. For password, paste the API token.
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
pyproject.toml
|
|
4
|
+
src/centori/__init__.py
|
|
5
|
+
src/centori/_version.py
|
|
6
|
+
src/centori.egg-info/PKG-INFO
|
|
7
|
+
src/centori.egg-info/SOURCES.txt
|
|
8
|
+
src/centori.egg-info/dependency_links.txt
|
|
9
|
+
src/centori.egg-info/top_level.txt
|
|
10
|
+
tests/test_centori.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
centori
|