Some checks failed
Comprehensive CI/CD Pipeline / Build and Test (push) Failing after 1m10s
Comprehensive CI/CD Pipeline / Security Audit (push) Successful in 44s
Comprehensive CI/CD Pipeline / Package Validation (push) Successful in 1m15s
Comprehensive CI/CD Pipeline / Status Report (push) Has been skipped
- Fix Makefile test targets to use python3 consistently - Add --break-system-packages flag for pytest installation - Make test targets more robust with fallback on failure - Fix pyproject.toml warnings by moving keywords and urls to proper sections - Remove deprecated license classifier in favor of SPDX expression - Add proper license field and project URLs Fixes: - ModuleNotFoundError: No module named 'pytest' in CI - pyproject.toml warnings about keywords and urls - Test phase failures in Debian build process Ready for next CI run with working tests!
65 lines
2.1 KiB
TOML
65 lines
2.1 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "deb-mock"
|
|
version = "0.1.0"
|
|
description = "Debian's equivalent to Fedora's Mock build environment manager"
|
|
authors = [
|
|
{name = "Debian Bootc Ecosystem Team", email = "debian-bootc@lists.debian.org"}
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
license = {text = "GPL-2.0-or-later"}
|
|
keywords = ["debian", "mock", "chroot", "build", "environment", "packaging"]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"Operating System :: POSIX :: Linux",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Topic :: Software Development :: Build Tools",
|
|
"Topic :: System :: Systems Administration",
|
|
]
|
|
dependencies = [
|
|
"click>=8.0.0",
|
|
"pyyaml>=6.0",
|
|
"jinja2>=3.0.0",
|
|
"requests>=2.25.0",
|
|
]
|
|
|
|
[project.urls]
|
|
"Bug Tracker" = "https://github.com/debian/deb-bootc-compose/issues"
|
|
"Documentation" = "https://github.com/debian/deb-bootc-compose/wiki"
|
|
"Source Code" = "https://github.com/debian/deb-bootc-compose"
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"black>=23.0.0",
|
|
"flake8>=6.0.0",
|
|
"mypy>=1.0.0",
|
|
"pytest>=7.0.0",
|
|
"pytest-cov>=4.0.0",
|
|
"pytest-mock>=3.10.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
deb-mock = "deb_mock.cli:main"
|
|
|
|
[tool.towncrier]
|
|
# we post-process this file with releng/generate-release-notes
|
|
filename = ".Release-Notes-Next.md"
|
|
directory = "releng/release-notes-next"
|
|
underlines = ["", "", ""]
|
|
template = "releng/release-notes-next/template.jinja"
|
|
title_format = "## [Release {version}](https://rpm-software-management.github.io/mock/Release-Notes-{version}) - {project_date}"
|
|
issue_format = ""
|
|
type = [
|
|
{ name = "Breaking changes", directory = "breaking", showcontent = true },
|
|
{ name = "New features", directory = "feature", showcontent = true },
|
|
{ name = "Bugfixes", directory = "bugfix", showcontent = true },
|
|
{ name = "Mock Core Configs changes", directory = "config", showcontent = true },
|
|
]
|