mlb-studio 1.0.0b1__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,9 @@
1
+ PolyForm Noncommercial License 1.0.0
2
+
3
+ Copyright (c) 2026 Zameer Hussain and Akhtar Hussain.
4
+
5
+ This software is licensed under the PolyForm Noncommercial License 1.0.0.
6
+ Commercial use requires a separate written commercial license from the copyright holders.
7
+
8
+ Full license terms:
9
+ https://polyformproject.org/licenses/noncommercial/1.0.0/
@@ -0,0 +1,39 @@
1
+ Metadata-Version: 2.4
2
+ Name: mlb-studio
3
+ Version: 1.0.0b1
4
+ Summary: Short PyPI alias for MLBricks Studio.
5
+ Author: Zameer Hussain, Akhtar Hussain
6
+ License-Expression: PolyForm-Noncommercial-1.0.0
7
+ Project-URL: Homepage, https://github.com/MlBricks/MLBricks-Studio
8
+ Project-URL: Repository, https://github.com/MlBricks/MLBricks-Studio
9
+ Requires-Python: >=3.10
10
+ Description-Content-Type: text/markdown
11
+ License-File: LICENSE
12
+ Requires-Dist: mlbricks-studio==1.0.0b1
13
+ Provides-Extra: data
14
+ Requires-Dist: mlbricks-studio[data]==1.0.0b1; extra == "data"
15
+ Provides-Extra: cloud
16
+ Requires-Dist: mlbricks-studio[cloud]==1.0.0b1; extra == "cloud"
17
+ Provides-Extra: serve
18
+ Requires-Dist: mlbricks-studio[serve]==1.0.0b1; extra == "serve"
19
+ Dynamic: license-file
20
+
21
+ # mlb-studio
22
+
23
+ `mlb-studio` is the short PyPI alias for **MLBricks Studio**.
24
+
25
+ Install either name:
26
+
27
+ ```bash
28
+ pip install mlbricks-studio
29
+ # or
30
+ pip install mlb-studio
31
+ ```
32
+
33
+ Both provide the same runtime and Python API:
34
+
35
+ ```python
36
+ from mlbstudio import Builder
37
+ ```
38
+
39
+ The alias package depends on the matching `mlbricks-studio` release and contains no duplicate runtime code.
@@ -0,0 +1,19 @@
1
+ # mlb-studio
2
+
3
+ `mlb-studio` is the short PyPI alias for **MLBricks Studio**.
4
+
5
+ Install either name:
6
+
7
+ ```bash
8
+ pip install mlbricks-studio
9
+ # or
10
+ pip install mlb-studio
11
+ ```
12
+
13
+ Both provide the same runtime and Python API:
14
+
15
+ ```python
16
+ from mlbstudio import Builder
17
+ ```
18
+
19
+ The alias package depends on the matching `mlbricks-studio` release and contains no duplicate runtime code.
@@ -0,0 +1,39 @@
1
+ Metadata-Version: 2.4
2
+ Name: mlb-studio
3
+ Version: 1.0.0b1
4
+ Summary: Short PyPI alias for MLBricks Studio.
5
+ Author: Zameer Hussain, Akhtar Hussain
6
+ License-Expression: PolyForm-Noncommercial-1.0.0
7
+ Project-URL: Homepage, https://github.com/MlBricks/MLBricks-Studio
8
+ Project-URL: Repository, https://github.com/MlBricks/MLBricks-Studio
9
+ Requires-Python: >=3.10
10
+ Description-Content-Type: text/markdown
11
+ License-File: LICENSE
12
+ Requires-Dist: mlbricks-studio==1.0.0b1
13
+ Provides-Extra: data
14
+ Requires-Dist: mlbricks-studio[data]==1.0.0b1; extra == "data"
15
+ Provides-Extra: cloud
16
+ Requires-Dist: mlbricks-studio[cloud]==1.0.0b1; extra == "cloud"
17
+ Provides-Extra: serve
18
+ Requires-Dist: mlbricks-studio[serve]==1.0.0b1; extra == "serve"
19
+ Dynamic: license-file
20
+
21
+ # mlb-studio
22
+
23
+ `mlb-studio` is the short PyPI alias for **MLBricks Studio**.
24
+
25
+ Install either name:
26
+
27
+ ```bash
28
+ pip install mlbricks-studio
29
+ # or
30
+ pip install mlb-studio
31
+ ```
32
+
33
+ Both provide the same runtime and Python API:
34
+
35
+ ```python
36
+ from mlbstudio import Builder
37
+ ```
38
+
39
+ The alias package depends on the matching `mlbricks-studio` release and contains no duplicate runtime code.
@@ -0,0 +1,8 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ mlb_studio.egg-info/PKG-INFO
5
+ mlb_studio.egg-info/SOURCES.txt
6
+ mlb_studio.egg-info/dependency_links.txt
7
+ mlb_studio.egg-info/requires.txt
8
+ mlb_studio.egg-info/top_level.txt
@@ -0,0 +1,10 @@
1
+ mlbricks-studio==1.0.0b1
2
+
3
+ [cloud]
4
+ mlbricks-studio[cloud]==1.0.0b1
5
+
6
+ [data]
7
+ mlbricks-studio[data]==1.0.0b1
8
+
9
+ [serve]
10
+ mlbricks-studio[serve]==1.0.0b1
@@ -0,0 +1,31 @@
1
+ [build-system]
2
+ requires = ["setuptools>=77.0.3", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "mlb-studio"
7
+ version = "1.0.0b1"
8
+ description = "Short PyPI alias for MLBricks Studio."
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = "PolyForm-Noncommercial-1.0.0"
12
+ license-files = ["LICENSE"]
13
+ authors = [
14
+ { name = "Zameer Hussain" },
15
+ { name = "Akhtar Hussain" }
16
+ ]
17
+ dependencies = [
18
+ "mlbricks-studio==1.0.0b1"
19
+ ]
20
+
21
+ [project.optional-dependencies]
22
+ data = ["mlbricks-studio[data]==1.0.0b1"]
23
+ cloud = ["mlbricks-studio[cloud]==1.0.0b1"]
24
+ serve = ["mlbricks-studio[serve]==1.0.0b1"]
25
+
26
+ [project.urls]
27
+ Homepage = "https://github.com/MlBricks/MLBricks-Studio"
28
+ Repository = "https://github.com/MlBricks/MLBricks-Studio"
29
+
30
+ [tool.setuptools]
31
+ packages = []
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+