Skip to content

Instantly share code, notes, and snippets.

@muellerzr
Created June 7, 2025 08:53
Show Gist options
  • Save muellerzr/baa20f28f8d3a6386015e62caf11f7af to your computer and use it in GitHub Desktop.
Save muellerzr/baa20f28f8d3a6386015e62caf11f7af to your computer and use it in GitHub Desktop.

Revisions

  1. muellerzr created this gist Jun 7, 2025.
    23 changes: 23 additions & 0 deletions pyproject.toml
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,23 @@
    [project]
    name = "my_project"
    version = "0.1.0"
    description = "A simple Python project"
    authors = [
    { name = "Your Name", email = "[email protected]" }
    ]
    readme = "README.md"
    license = { text = "MIT" }
    requires-python = ">=3.8"
    dependencies = [
    "requests"
    ]

    [build-system]
    requires = ["setuptools>=61.0", "wheel"]
    build-backend = "setuptools.build_meta"

    [tool.setuptools]
    package-dir = { "" = "src" }

    [tool.setuptools.packages.find]
    where = ["src"]