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.
pyproject template
[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"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment