mlenergy 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.
- mlenergy-0.0.1/PKG-INFO +41 -0
- mlenergy-0.0.1/README.md +24 -0
- mlenergy-0.0.1/mlenergy.egg-info/PKG-INFO +41 -0
- mlenergy-0.0.1/mlenergy.egg-info/SOURCES.txt +7 -0
- mlenergy-0.0.1/mlenergy.egg-info/dependency_links.txt +1 -0
- mlenergy-0.0.1/mlenergy.egg-info/requires.txt +4 -0
- mlenergy-0.0.1/mlenergy.egg-info/top_level.txt +1 -0
- mlenergy-0.0.1/pyproject.toml +32 -0
- mlenergy-0.0.1/setup.cfg +4 -0
mlenergy-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mlenergy
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: ML.ENERGY namespace package
|
|
5
|
+
Author-email: Jae-Won Chung <jaewon.chung.cs@gmail.com>
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Project-URL: Repository, https://github.com/ml-energy/python
|
|
8
|
+
Project-URL: Issues, https://github.com/ml-energy/python/issues
|
|
9
|
+
Keywords: machine-learning,energy,gpu
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
12
|
+
Requires-Python: >=3.10
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
Requires-Dist: mlenergy-data
|
|
15
|
+
Provides-Extra: data
|
|
16
|
+
Requires-Dist: mlenergy-data; extra == "data"
|
|
17
|
+
|
|
18
|
+
# mlenergy
|
|
19
|
+
|
|
20
|
+
Meta-package for the [ML.ENERGY](https://ml.energy) Python ecosystem.
|
|
21
|
+
|
|
22
|
+
This distribution contains no code of its own. It exists to give the ecosystem a single PyPI handle and to install its constituent packages as a bundle.
|
|
23
|
+
|
|
24
|
+
## Install
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
pip install mlenergy # everything
|
|
28
|
+
pip install mlenergy-data # just the data toolkit
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
The Python import namespace `mlenergy` is a [PEP 420 implicit namespace package](https://peps.python.org/pep-0420/). Each subpackage (`mlenergy.data`, ...) is shipped by its own distribution and merged at import time.
|
|
32
|
+
|
|
33
|
+
| distribution | imports as | repo |
|
|
34
|
+
|---|---|---|
|
|
35
|
+
| `mlenergy-data` | `mlenergy.data` | [ml-energy/data](https://github.com/ml-energy/data) |
|
|
36
|
+
|
|
37
|
+
## Adding a new subpackage
|
|
38
|
+
|
|
39
|
+
1. New repo publishes a `mlenergy-<name>` distribution that ships `mlenergy/<name>/` (with no top-level `mlenergy/__init__.py`).
|
|
40
|
+
2. Add `mlenergy-<name>` to this package's `dependencies` and to `[project.optional-dependencies]`.
|
|
41
|
+
3. Cut a new release of `mlenergy`.
|
mlenergy-0.0.1/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# mlenergy
|
|
2
|
+
|
|
3
|
+
Meta-package for the [ML.ENERGY](https://ml.energy) Python ecosystem.
|
|
4
|
+
|
|
5
|
+
This distribution contains no code of its own. It exists to give the ecosystem a single PyPI handle and to install its constituent packages as a bundle.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
pip install mlenergy # everything
|
|
11
|
+
pip install mlenergy-data # just the data toolkit
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
The Python import namespace `mlenergy` is a [PEP 420 implicit namespace package](https://peps.python.org/pep-0420/). Each subpackage (`mlenergy.data`, ...) is shipped by its own distribution and merged at import time.
|
|
15
|
+
|
|
16
|
+
| distribution | imports as | repo |
|
|
17
|
+
|---|---|---|
|
|
18
|
+
| `mlenergy-data` | `mlenergy.data` | [ml-energy/data](https://github.com/ml-energy/data) |
|
|
19
|
+
|
|
20
|
+
## Adding a new subpackage
|
|
21
|
+
|
|
22
|
+
1. New repo publishes a `mlenergy-<name>` distribution that ships `mlenergy/<name>/` (with no top-level `mlenergy/__init__.py`).
|
|
23
|
+
2. Add `mlenergy-<name>` to this package's `dependencies` and to `[project.optional-dependencies]`.
|
|
24
|
+
3. Cut a new release of `mlenergy`.
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mlenergy
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: ML.ENERGY namespace package
|
|
5
|
+
Author-email: Jae-Won Chung <jaewon.chung.cs@gmail.com>
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Project-URL: Repository, https://github.com/ml-energy/python
|
|
8
|
+
Project-URL: Issues, https://github.com/ml-energy/python/issues
|
|
9
|
+
Keywords: machine-learning,energy,gpu
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
12
|
+
Requires-Python: >=3.10
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
Requires-Dist: mlenergy-data
|
|
15
|
+
Provides-Extra: data
|
|
16
|
+
Requires-Dist: mlenergy-data; extra == "data"
|
|
17
|
+
|
|
18
|
+
# mlenergy
|
|
19
|
+
|
|
20
|
+
Meta-package for the [ML.ENERGY](https://ml.energy) Python ecosystem.
|
|
21
|
+
|
|
22
|
+
This distribution contains no code of its own. It exists to give the ecosystem a single PyPI handle and to install its constituent packages as a bundle.
|
|
23
|
+
|
|
24
|
+
## Install
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
pip install mlenergy # everything
|
|
28
|
+
pip install mlenergy-data # just the data toolkit
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
The Python import namespace `mlenergy` is a [PEP 420 implicit namespace package](https://peps.python.org/pep-0420/). Each subpackage (`mlenergy.data`, ...) is shipped by its own distribution and merged at import time.
|
|
32
|
+
|
|
33
|
+
| distribution | imports as | repo |
|
|
34
|
+
|---|---|---|
|
|
35
|
+
| `mlenergy-data` | `mlenergy.data` | [ml-energy/data](https://github.com/ml-energy/data) |
|
|
36
|
+
|
|
37
|
+
## Adding a new subpackage
|
|
38
|
+
|
|
39
|
+
1. New repo publishes a `mlenergy-<name>` distribution that ships `mlenergy/<name>/` (with no top-level `mlenergy/__init__.py`).
|
|
40
|
+
2. Add `mlenergy-<name>` to this package's `dependencies` and to `[project.optional-dependencies]`.
|
|
41
|
+
3. Cut a new release of `mlenergy`.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=64"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "mlenergy"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "ML.ENERGY namespace package"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = "Apache-2.0"
|
|
12
|
+
authors = [
|
|
13
|
+
{name = "Jae-Won Chung", email = "jaewon.chung.cs@gmail.com"},
|
|
14
|
+
]
|
|
15
|
+
keywords = ["machine-learning", "energy", "gpu"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
19
|
+
]
|
|
20
|
+
dependencies = [
|
|
21
|
+
"mlenergy-data",
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
[project.optional-dependencies]
|
|
25
|
+
data = ["mlenergy-data"]
|
|
26
|
+
|
|
27
|
+
[project.urls]
|
|
28
|
+
Repository = "https://github.com/ml-energy/python"
|
|
29
|
+
Issues = "https://github.com/ml-energy/python/issues"
|
|
30
|
+
|
|
31
|
+
[tool.setuptools]
|
|
32
|
+
py-modules = []
|
mlenergy-0.0.1/setup.cfg
ADDED