Created
June 7, 2025 08:53
-
-
Save muellerzr/baa20f28f8d3a6386015e62caf11f7af to your computer and use it in GitHub Desktop.
pyproject template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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