[build-system] requires = ["setuptools>=68.0", "wheel"] build-backend = "setuptools.build_meta" [project] name = "physcom" version = "0.1.0" description = "Physical Combinatorics — innovation via attribute mixing" requires-python = ">=3.10" dependencies = [ "click>=8.1", ] [project.optional-dependencies] dev = [ "pytest>=7.0", ] web = [ "flask>=3.0", ] gemini = [ "google-genai>=1.0", ] [project.scripts] physcom = "physcom.cli:main" physcom-web = "physcom_web.app:run" [tool.setuptools.packages.find] where = ["src"] [tool.setuptools.package-data] physcom_web = ["templates/**/*.html", "static/**/*"] [tool.pytest.ini_options] testpaths = ["tests"]