[build-system] requires = ["setuptools>=61.0", "wheel"] build-backend = "setuptools.build_meta" [project] name = "metabuilder-python" version = "1.0.0" description = "Python packages for MetaBuilder" readme = "README.md" license = {text = "MIT"} requires-python = ">=3.9" authors = [ {name = "MetaBuilder Team"} ] classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", ] dependencies = [ "PyQt6>=6.4.0", ] [project.optional-dependencies] dev = [ "pytest>=7.0.0", "pytest-qt>=4.0.0", "mypy>=1.0.0", ] [tool.setuptools.packages.find] where = ["."] include = ["fakemui*"] [tool.mypy] python_version = "3.9" warn_return_any = true warn_unused_configs = true plugins = ["PyQt6"] [tool.pytest.ini_options] testpaths = ["tests"] python_files = ["test_*.py"]