mirror of
https://github.com/Monadical-SAS/cubbi.git
synced 2025-12-20 12:19:07 +00:00
134 lines
3.2 KiB
TOML
134 lines
3.2 KiB
TOML
[project]
|
|
name = "cubbi"
|
|
version = "0.4.0"
|
|
description = "Cubbi Container Tool"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
license = "MIT"
|
|
authors = [
|
|
{name = "Monadical SAS", email = "contact@monadical.com"}
|
|
]
|
|
dependencies = [
|
|
"typer>=0.9.0",
|
|
"docker>=7.0.0",
|
|
"pyyaml>=6.0.1",
|
|
"rich>=13.6.0",
|
|
"pydantic>=2.5.0",
|
|
"questionary>=2.0.0",
|
|
"requests>=2.32.3",
|
|
]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Intended Audience :: Developers",
|
|
"Intended Audience :: Science/Research",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
"Topic :: Software Development",
|
|
"Topic :: Scientific/Engineering :: Artificial Intelligence"
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=7.4.0",
|
|
"ruff>=0.1.9",
|
|
"mypy>=1.7.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
cubbi = "cubbi.cli:app"
|
|
cubbix = "cubbi.cli:session_create_entry_point"
|
|
|
|
[tool.ruff]
|
|
line-length = 88
|
|
target-version = "py312"
|
|
|
|
[tool.pytest.ini_options]
|
|
# Exclude integration tests by default
|
|
addopts = "-v --tb=short -m 'not integration'"
|
|
markers = [
|
|
"integration: marks tests as integration tests (deselected by default)",
|
|
]
|
|
|
|
[tool.mypy]
|
|
python_version = "3.12"
|
|
warn_return_any = true
|
|
warn_unused_configs = true
|
|
disallow_untyped_defs = true
|
|
disallow_incomplete_defs = true
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=8.3.5",
|
|
]
|
|
|
|
[tool.semantic_release]
|
|
assets = []
|
|
build_command_env = []
|
|
commit_message = "{version}\n\nAutomatically generated by python-semantic-release"
|
|
logging_use_named_masks = false
|
|
major_on_zero = true
|
|
allow_zero_version = true
|
|
no_git_verify = false
|
|
tag_format = "v{version}"
|
|
version_toml = [
|
|
"pyproject.toml:project.version:nf"
|
|
]
|
|
|
|
[tool.semantic_release.branches.main]
|
|
match = "(main|master)"
|
|
prerelease_token = "rc"
|
|
prerelease = false
|
|
|
|
[tool.semantic_release.changelog]
|
|
exclude_commit_patterns = []
|
|
mode = "init"
|
|
insertion_flag = "<!-- version list -->"
|
|
template_dir = "templates"
|
|
|
|
[tool.semantic_release.changelog.default_templates]
|
|
changelog_file = "CHANGELOG.md"
|
|
output_format = "md"
|
|
mask_initial_release = false
|
|
|
|
[tool.semantic_release.changelog.environment]
|
|
block_start_string = "{%"
|
|
block_end_string = "%}"
|
|
variable_start_string = "{{"
|
|
variable_end_string = "}}"
|
|
comment_start_string = "{#"
|
|
comment_end_string = "#}"
|
|
trim_blocks = false
|
|
lstrip_blocks = false
|
|
newline_sequence = "\n"
|
|
keep_trailing_newline = false
|
|
extensions = []
|
|
autoescape = false
|
|
|
|
[tool.semantic_release.commit_author]
|
|
env = "GIT_COMMIT_AUTHOR"
|
|
default = "semantic-release <semantic-release>"
|
|
|
|
[tool.semantic_release.commit_parser_options]
|
|
minor_tags = ["feat"]
|
|
patch_tags = ["fix", "perf"]
|
|
other_allowed_tags = ["build", "chore", "ci", "docs", "style", "refactor", "test"]
|
|
allowed_tags = ["feat", "fix", "perf", "build", "chore", "ci", "docs", "style", "refactor", "test"]
|
|
default_bump_level = 0
|
|
parse_squash_commits = false
|
|
ignore_merge_commits = false
|
|
|
|
[tool.semantic_release.remote]
|
|
name = "origin"
|
|
type = "github"
|
|
ignore_token_for_push = false
|
|
insecure = false
|
|
|
|
[tool.semantic_release.publish]
|
|
dist_glob_patterns = ["dist/*"]
|
|
upload_to_vcs_release = true
|