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 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,7 @@
1
+ # eoil
2
+
3
+ EOIL compute optimisation SDK.
4
+
5
+ > **This is a pre-release namespace reservation.** The full SDK is coming soon.
6
+ >
7
+ > Visit [eoil.ltd](https://eoil.ltd) for updates.
@@ -0,0 +1,4 @@
1
+ raise ImportError(
2
+ "eoil 0.1.0a1 is a namespace reservation. "
3
+ "The full SDK is coming soon — see https://eoil.ltd"
4
+ )
@@ -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"