https://gitlab.inria.fr/jrye/mlflow-extra.git
Revision fea71bf11644d91d887f70e25c07904ef0aca9eb authored by Jan-Michael Rye on 02 April 2023, 10:09:39 UTC, committed by Jan-Michael Rye on 02 April 2023, 10:09:39 UTC
1 parent 5c05e06
Tip revision: fea71bf11644d91d887f70e25c07904ef0aca9eb authored by Jan-Michael Rye on 02 April 2023, 10:09:39 UTC
Capitalize first letter of all log messages
Capitalize first letter of all log messages
Tip revision: fea71bf
pyproject.toml
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
# https://packaging.python.org/en/latest/tutorials/packaging-projects/
[build-system]
requires = ['hatchling', 'hatch-vcs', 'wheel']
build-backend = 'hatchling.build'
[project]
name = 'mlflow-extra'
description = 'Utilities for MLflow'
license = 'MIT'
dependencies = [
'mlflow',
'pyyaml'
]
authors = [
{name = 'Jan-Michael Rye', email = 'jan-michael.rye@inria.fr' }
]
requires-python = '>=3.6'
# https://pypi.org/classifiers/
classifiers = [
'Operating System :: OS Independent',
'Programming Language :: Python :: 3'
]
readme = 'README.md'
dynamic = ['version']
[project.urls]
Source = 'https://gitlab.inria.fr/jrye/mlflow-extra'
Documentation = 'https://jrye.gitlabpages.inria.fr/mlflow-extra/'
[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'
# Set the version from Git.
[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 ...