Created
June 7, 2025 08:53
-
-
Save muellerzr/baa20f28f8d3a6386015e62caf11f7af to your computer and use it in GitHub Desktop.
Revisions
-
muellerzr created this gist
Jun 7, 2025 .There are no files selected for viewing
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 charactersOriginal 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"]