summaryrefslogtreecommitdiff
path: root/common/templates/python/pyproject.toml
blob: 589276521f7f1b0682aa39f5f84e7396b44259ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[project]
name = "hello-world"
version = "0.1.0"
description = "Add your description here"
requires-python = ">=3.12"
dependencies = []

[project.scripts]
hello_world = "hello_world.main:main"

[build-system]
requires = ["uv_build>=0.10.0,<0.11.0"]
build-backend = "uv_build"

[tool.pyrefly]
project-includes = [
  "**/*.py*",
  "**/*.ipynb",
]