septemberai 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.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 September Platforms (P) Ltd.
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,28 @@
1
+ Metadata-Version: 2.4
2
+ Name: septemberai
3
+ Version: 0.0.1
4
+ Summary: September platform SDK — reserved alias of september-ai; the public release is on its way.
5
+ Project-URL: Homepage, https://github.com/septemberai/september-sdk
6
+ Project-URL: Repository, https://github.com/septemberai/september-sdk
7
+ Author: shrivathsanm
8
+ License-Expression: MIT
9
+ License-File: LICENSE
10
+ Keywords: agents,ai,llm,sdk,september
11
+ Classifier: Development Status :: 1 - Planning
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Operating System :: OS Independent
14
+ Classifier: Programming Language :: Python :: 3
15
+ Requires-Python: >=3.10
16
+ Description-Content-Type: text/markdown
17
+
18
+ # septemberai
19
+
20
+ The Python SDK for the **September platform** — the agentic engine and the citadel model gateway.
21
+
22
+ ```bash
23
+ pip install septemberai
24
+ ```
25
+
26
+ This `0.0.1` is a name-reservation placeholder; the public release ships as `1.0.0`.
27
+ `september-ai` is an optional alias of this package. Track progress at
28
+ https://github.com/septemberai/september-sdk
@@ -0,0 +1,11 @@
1
+ # septemberai
2
+
3
+ The Python SDK for the **September platform** — the agentic engine and the citadel model gateway.
4
+
5
+ ```bash
6
+ pip install septemberai
7
+ ```
8
+
9
+ This `0.0.1` is a name-reservation placeholder; the public release ships as `1.0.0`.
10
+ `september-ai` is an optional alias of this package. Track progress at
11
+ https://github.com/septemberai/september-sdk
@@ -0,0 +1,27 @@
1
+ [build-system]
2
+ requires = ["hatchling>=1.27"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "septemberai"
7
+ version = "0.0.1"
8
+ description = "September platform SDK — reserved alias of september-ai; the public release is on its way."
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = "MIT"
12
+ license-files = ["LICENSE"]
13
+ authors = [{ name = "shrivathsanm" }]
14
+ keywords = ["september", "sdk", "ai", "agents", "llm"]
15
+ classifiers = [
16
+ "Development Status :: 1 - Planning",
17
+ "Intended Audience :: Developers",
18
+ "Operating System :: OS Independent",
19
+ "Programming Language :: Python :: 3",
20
+ ]
21
+
22
+ [project.urls]
23
+ Homepage = "https://github.com/septemberai/september-sdk"
24
+ Repository = "https://github.com/septemberai/september-sdk"
25
+
26
+ [tool.hatch.build.targets.wheel]
27
+ packages = ["septemberai"]
@@ -0,0 +1,6 @@
1
+ """Placeholder for the September platform SDK (canonical package: septemberai).
2
+
3
+ The public release ships as 1.0.0. See https://github.com/septemberai/september-sdk
4
+ """
5
+
6
+ __version__ = "0.0.1"