aurelius-sdk 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,40 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: aurelius-sdk
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Aurelius SDK — Python SDK for Aurelius decision-making infrastructure.
|
|
5
|
+
Project-URL: Homepage, https://aurelius.com
|
|
6
|
+
Project-URL: Repository, https://github.com/Aurelius-OS/aurelius-sdk-python
|
|
7
|
+
Project-URL: Documentation, https://docs.aurelius.com/sdk/python
|
|
8
|
+
Author-email: Aurelius Technologies <eng@aurelius.com>
|
|
9
|
+
License-Expression: Apache-2.0
|
|
10
|
+
Keywords: api,aurelius,decision-making,infrastructure,sdk
|
|
11
|
+
Classifier: Development Status :: 1 - Planning
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
20
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
21
|
+
Requires-Python: >=3.9
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
|
|
24
|
+
# aurelius-sdk
|
|
25
|
+
|
|
26
|
+
**Python SDK for Aurelius decision-making infrastructure.**
|
|
27
|
+
|
|
28
|
+
This package is a namespace reservation for [Aurelius Technologies](https://aurelius.com). Functionality is coming soon.
|
|
29
|
+
|
|
30
|
+
## Installation
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
pip install aurelius-sdk
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Links
|
|
37
|
+
|
|
38
|
+
- [Website](https://aurelius.com)
|
|
39
|
+
- [Documentation](https://docs.aurelius.com/sdk/python)
|
|
40
|
+
- [GitHub](https://github.com/Aurelius-OS)
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# aurelius-sdk
|
|
2
|
+
|
|
3
|
+
**Python SDK for Aurelius decision-making infrastructure.**
|
|
4
|
+
|
|
5
|
+
This package is a namespace reservation for [Aurelius Technologies](https://aurelius.com). Functionality is coming soon.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
pip install aurelius-sdk
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Links
|
|
14
|
+
|
|
15
|
+
- [Website](https://aurelius.com)
|
|
16
|
+
- [Documentation](https://docs.aurelius.com/sdk/python)
|
|
17
|
+
- [GitHub](https://github.com/Aurelius-OS)
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "aurelius-sdk"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Aurelius SDK — Python SDK for Aurelius decision-making infrastructure."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "Apache-2.0"
|
|
11
|
+
requires-python = ">=3.9"
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "Aurelius Technologies", email = "eng@aurelius.com" },
|
|
14
|
+
]
|
|
15
|
+
keywords = ["aurelius", "sdk", "decision-making", "infrastructure", "api"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 1 - Planning",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"License :: OSI Approved :: Apache Software License",
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
21
|
+
"Programming Language :: Python :: 3.9",
|
|
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",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[project.urls]
|
|
30
|
+
Homepage = "https://aurelius.com"
|
|
31
|
+
Repository = "https://github.com/Aurelius-OS/aurelius-sdk-python"
|
|
32
|
+
Documentation = "https://docs.aurelius.com/sdk/python"
|
|
File without changes
|