[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 = "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", "psutil>=5.8.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 }, ]