eoil 0.1.0a1__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.
- eoil-0.1.0a1/PKG-INFO +20 -0
- eoil-0.1.0a1/README.md +7 -0
- eoil-0.1.0a1/eoil/__init__.py +4 -0
- eoil-0.1.0a1/pyproject.toml +20 -0
eoil-0.1.0a1/PKG-INFO
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: eoil
|
|
3
|
+
Version: 0.1.0a1
|
|
4
|
+
Summary: EOIL compute optimisation SDK — namespace reservation
|
|
5
|
+
Project-URL: Homepage, https://eoil.ltd
|
|
6
|
+
Author-email: EO Inc Ltd <hello@eoil.ltd>
|
|
7
|
+
License: Proprietary
|
|
8
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Requires-Python: >=3.9
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# eoil
|
|
15
|
+
|
|
16
|
+
EOIL compute optimisation SDK.
|
|
17
|
+
|
|
18
|
+
> **This is a pre-release namespace reservation.** The full SDK is coming soon.
|
|
19
|
+
>
|
|
20
|
+
> Visit [eoil.ltd](https://eoil.ltd) for updates.
|
eoil-0.1.0a1/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "eoil"
|
|
7
|
+
version = "0.1.0a1"
|
|
8
|
+
description = "EOIL compute optimisation SDK — namespace reservation"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "Proprietary" }
|
|
11
|
+
authors = [{ name = "EO Inc Ltd", email = "hello@eoil.ltd" }]
|
|
12
|
+
requires-python = ">=3.9"
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 2 - Pre-Alpha",
|
|
15
|
+
"Intended Audience :: Developers",
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
[project.urls]
|
|
20
|
+
Homepage = "https://eoil.ltd"
|