hydraflow 0.1.0__tar.gz → 0.1.1__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- hydraflow-0.1.1/.gitattributes +2 -0
- {hydraflow-0.1.0 → hydraflow-0.1.1}/.gitignore +2 -1
- hydraflow-0.1.1/PKG-INFO +45 -0
- hydraflow-0.1.1/README.md +16 -0
- {hydraflow-0.1.0 → hydraflow-0.1.1}/pyproject.toml +4 -10
- {hydraflow-0.1.0 → hydraflow-0.1.1}/src/hydraflow/util.py +11 -11
- hydraflow-0.1.0/PKG-INFO +0 -29
- hydraflow-0.1.0/README.md +0 -1
- {hydraflow-0.1.0 → hydraflow-0.1.1}/.devcontainer/devcontainer.json +0 -0
- {hydraflow-0.1.0 → hydraflow-0.1.1}/.devcontainer/postCreate.sh +0 -0
- {hydraflow-0.1.0 → hydraflow-0.1.1}/.devcontainer/starship.toml +0 -0
- {hydraflow-0.1.0 → hydraflow-0.1.1}/LICENSE +0 -0
- {hydraflow-0.1.0 → hydraflow-0.1.1}/src/hydraflow/__init__.py +0 -0
- {hydraflow-0.1.0 → hydraflow-0.1.1}/src/hydraflow/config.py +0 -0
- {hydraflow-0.1.0 → hydraflow-0.1.1}/src/hydraflow/context.py +0 -0
- {hydraflow-0.1.0 → hydraflow-0.1.1}/src/hydraflow/mlflow.py +0 -0
- {hydraflow-0.1.0 → hydraflow-0.1.1}/src/hydraflow/run.py +0 -0
- {hydraflow-0.1.0 → hydraflow-0.1.1}/tests/log_run.py +0 -0
- {hydraflow-0.1.0 → hydraflow-0.1.1}/tests/test_config.py +0 -0
- {hydraflow-0.1.0 → hydraflow-0.1.1}/tests/test_log_run.py +0 -0
- {hydraflow-0.1.0 → hydraflow-0.1.1}/tests/test_run.py +0 -0
- {hydraflow-0.1.0 → hydraflow-0.1.1}/tests/test_version.py +0 -0
- {hydraflow-0.1.0 → hydraflow-0.1.1}/tests/test_watch.py +0 -0
- {hydraflow-0.1.0 → hydraflow-0.1.1}/tests/watch.py +0 -0
hydraflow-0.1.1/PKG-INFO
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
Metadata-Version: 2.3
|
2
|
+
Name: hydraflow
|
3
|
+
Version: 0.1.1
|
4
|
+
Summary: Hydra with MLflow
|
5
|
+
Project-URL: Documentation, https://github.com/daizutabi/hydraflow
|
6
|
+
Project-URL: Source, https://github.com/daizutabi/hydraflow
|
7
|
+
Project-URL: Issues, https://github.com/daizutabi/hydraflow/issues
|
8
|
+
Author-email: daizutabi <daizutabi@gmail.com>
|
9
|
+
License-Expression: MIT
|
10
|
+
License-File: LICENSE
|
11
|
+
Classifier: Development Status :: 4 - Beta
|
12
|
+
Classifier: Programming Language :: Python
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
16
|
+
Classifier: Topic :: Documentation
|
17
|
+
Classifier: Topic :: Software Development :: Documentation
|
18
|
+
Requires-Python: >=3.10
|
19
|
+
Requires-Dist: hydra-core>1.3
|
20
|
+
Requires-Dist: mlflow>2.15
|
21
|
+
Requires-Dist: setuptools
|
22
|
+
Requires-Dist: watchdog
|
23
|
+
Provides-Extra: dev
|
24
|
+
Requires-Dist: pytest-clarity; extra == 'dev'
|
25
|
+
Requires-Dist: pytest-cov; extra == 'dev'
|
26
|
+
Requires-Dist: pytest-randomly; extra == 'dev'
|
27
|
+
Requires-Dist: pytest-xdist; extra == 'dev'
|
28
|
+
Description-Content-Type: text/markdown
|
29
|
+
|
30
|
+
# hydraflow
|
31
|
+
|
32
|
+
[![PyPI Version][pypi-v-image]][pypi-v-link]
|
33
|
+
[![Python Version][python-v-image]][python-v-link]
|
34
|
+
[![Build Status][GHAction-image]][GHAction-link]
|
35
|
+
[![Coverage Status][codecov-image]][codecov-link]
|
36
|
+
|
37
|
+
<!-- Badges -->
|
38
|
+
[pypi-v-image]: https://img.shields.io/pypi/v/hydraflow.svg
|
39
|
+
[pypi-v-link]: https://pypi.org/project/hydraflow/
|
40
|
+
[python-v-image]: https://img.shields.io/pypi/pyversions/hydraflow.svg
|
41
|
+
[python-v-link]: https://pypi.org/project/hydraflow
|
42
|
+
[GHAction-image]: https://github.com/daizutabi/hydraflow/actions/workflows/ci.yml/badge.svg?branch=main&event=push
|
43
|
+
[GHAction-link]: https://github.com/daizutabi/hydraflow/actions?query=event%3Apush+branch%3Amain
|
44
|
+
[codecov-image]: https://codecov.io/github/daizutabi/hydraflow/coverage.svg?branch=main
|
45
|
+
[codecov-link]: https://codecov.io/github/daizutabi/hydraflow?branch=main
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# hydraflow
|
2
|
+
|
3
|
+
[![PyPI Version][pypi-v-image]][pypi-v-link]
|
4
|
+
[![Python Version][python-v-image]][python-v-link]
|
5
|
+
[![Build Status][GHAction-image]][GHAction-link]
|
6
|
+
[![Coverage Status][codecov-image]][codecov-link]
|
7
|
+
|
8
|
+
<!-- Badges -->
|
9
|
+
[pypi-v-image]: https://img.shields.io/pypi/v/hydraflow.svg
|
10
|
+
[pypi-v-link]: https://pypi.org/project/hydraflow/
|
11
|
+
[python-v-image]: https://img.shields.io/pypi/pyversions/hydraflow.svg
|
12
|
+
[python-v-link]: https://pypi.org/project/hydraflow
|
13
|
+
[GHAction-image]: https://github.com/daizutabi/hydraflow/actions/workflows/ci.yml/badge.svg?branch=main&event=push
|
14
|
+
[GHAction-link]: https://github.com/daizutabi/hydraflow/actions?query=event%3Apush+branch%3Amain
|
15
|
+
[codecov-image]: https://codecov.io/github/daizutabi/hydraflow/coverage.svg?branch=main
|
16
|
+
[codecov-link]: https://codecov.io/github/daizutabi/hydraflow?branch=main
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "hydraflow"
|
7
|
-
version = "0.1.
|
7
|
+
version = "0.1.1"
|
8
8
|
description = "Hydra with MLflow"
|
9
9
|
readme = "README.md"
|
10
10
|
license = "MIT"
|
@@ -19,19 +19,13 @@ classifiers = [
|
|
19
19
|
"Topic :: Software Development :: Documentation",
|
20
20
|
]
|
21
21
|
requires-python = ">=3.10"
|
22
|
-
dependencies = ["hydra-core", "mlflow", "watchdog"]
|
22
|
+
dependencies = ["hydra-core>1.3", "mlflow>2.15", "setuptools", "watchdog"]
|
23
23
|
|
24
24
|
[project.optional-dependencies]
|
25
|
-
dev = [
|
26
|
-
"pytest-clarity",
|
27
|
-
"pytest-cov",
|
28
|
-
"pytest-randomly",
|
29
|
-
"pytest-xdist",
|
30
|
-
"setuptools",
|
31
|
-
]
|
25
|
+
dev = ["pytest-clarity", "pytest-cov", "pytest-randomly", "pytest-xdist"]
|
32
26
|
|
33
27
|
[project.urls]
|
34
|
-
|
28
|
+
Documentation = "https://github.com/daizutabi/hydraflow"
|
35
29
|
Source = "https://github.com/daizutabi/hydraflow"
|
36
30
|
Issues = "https://github.com/daizutabi/hydraflow/issues"
|
37
31
|
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import platform
|
2
|
-
from pathlib import Path
|
3
|
-
from urllib.parse import urlparse
|
4
|
-
|
5
|
-
|
6
|
-
def uri_to_path(uri: str) -> Path:
|
7
|
-
path = urlparse(uri).path
|
8
|
-
if platform.system() == "Windows" and path.startswith("/"):
|
9
|
-
path = path[1:]
|
10
|
-
|
11
|
-
return Path(path)
|
1
|
+
import platform
|
2
|
+
from pathlib import Path
|
3
|
+
from urllib.parse import urlparse
|
4
|
+
|
5
|
+
|
6
|
+
def uri_to_path(uri: str) -> Path:
|
7
|
+
path = urlparse(uri).path
|
8
|
+
if platform.system() == "Windows" and path.startswith("/"):
|
9
|
+
path = path[1:]
|
10
|
+
|
11
|
+
return Path(path)
|
hydraflow-0.1.0/PKG-INFO
DELETED
@@ -1,29 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.3
|
2
|
-
Name: hydraflow
|
3
|
-
Version: 0.1.0
|
4
|
-
Summary: Hydra with MLflow
|
5
|
-
Project-URL: Source, https://github.com/daizutabi/hydraflow
|
6
|
-
Project-URL: Issues, https://github.com/daizutabi/hydraflow/issues
|
7
|
-
Author-email: daizutabi <daizutabi@gmail.com>
|
8
|
-
License-Expression: MIT
|
9
|
-
License-File: LICENSE
|
10
|
-
Classifier: Development Status :: 4 - Beta
|
11
|
-
Classifier: Programming Language :: Python
|
12
|
-
Classifier: Programming Language :: Python :: 3.10
|
13
|
-
Classifier: Programming Language :: Python :: 3.11
|
14
|
-
Classifier: Programming Language :: Python :: 3.12
|
15
|
-
Classifier: Topic :: Documentation
|
16
|
-
Classifier: Topic :: Software Development :: Documentation
|
17
|
-
Requires-Python: >=3.10
|
18
|
-
Requires-Dist: hydra-core
|
19
|
-
Requires-Dist: mlflow
|
20
|
-
Requires-Dist: watchdog
|
21
|
-
Provides-Extra: dev
|
22
|
-
Requires-Dist: pytest-clarity; extra == 'dev'
|
23
|
-
Requires-Dist: pytest-cov; extra == 'dev'
|
24
|
-
Requires-Dist: pytest-randomly; extra == 'dev'
|
25
|
-
Requires-Dist: pytest-xdist; extra == 'dev'
|
26
|
-
Requires-Dist: setuptools; extra == 'dev'
|
27
|
-
Description-Content-Type: text/markdown
|
28
|
-
|
29
|
-
# hydraflow
|
hydraflow-0.1.0/README.md
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
# hydraflow
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|