https://gitlab.inria.fr/jrye/mlflow-extra.git
Revision 9920265637b1c8c51727a9604609fc21cb052dcd authored by Jan-Michael Rye on 20 October 2023, 11:35:46 UTC, committed by Jan-Michael Rye on 20 October 2023, 11:35:46 UTC
1 parent 8c0ba68
Tip revision: 9920265637b1c8c51727a9604609fc21cb052dcd authored by Jan-Michael Rye on 20 October 2023, 11:35:46 UTC
Register pip package
Register pip package
Tip revision: 9920265
pyproject.toml
[build-system]
requires = [
"hatchling",
"hatch-vcs",
"wheel",
]
build-backend = "hatchling.build"
[project]
name = "mlflow-extra"
description = "Utilities for MLflow"
dependencies = [
"mlflow",
"pyyaml",
]
authors = [
{ name = "Jan-Michael Rye", email = "jan-michael.rye@inria.fr" },
]
requires-python = ">=3.6"
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
readme = "README.md"
dynamic = [
"version",
]
[project.license]
file = "LICENSE.txt"
[project.urls]
homepage = "https://gitlab.inria.fr/jrye/mlflow-extra"
repository = "https://gitlab.inria.fr/jrye/mlflow-extra.git"
documentation = "https://jrye.gitlabpages.inria.fr/mlflow-extra"
issues = "https://gitlab.inria.fr/jrye/mlflow-extra/-/issues"
[project.scripts]
mlflow-filter_runs = "mlflow_extra.filter:script_filter_runs"
mlflow-fix_artifacts = "mlflow_extra.merge:script_fix_artifact_uris"
mlflow-fix_experiment_ids = "mlflow_extra.merge:script_fix_experiment_ids"
mlflow-merge = "mlflow_extra.merge:script_merge_experiments"
[tool.hatch.version]
source = "vcs"
[tool.hatch.version.raw-options]
version_scheme = "no-guess-dev"
local_scheme = "no-local-version"
[tool.hatch.build.hooks.vcs]
version-file = "src/mlflow_extra/version.py"
template = """
#!/usr/bin/env python3
'''
Version file automatically generated by setuptools-scm via hatch-vcs.
https://pypi.org/project/setuptools-scm/
https://github.com/ofek/hatch-vcs
Do not track this file and do not edit it manually.
'''
VERSION = {version!r}
VERSION_TUPLE = {version_tuple!r}
"""
[tool.pylint."MESSAGES CONTROL"]
max-line-length = 100

Computing file changes ...