-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (34 loc) · 765 Bytes
/
pyproject.toml
File metadata and controls
42 lines (34 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[project]
name = "create-pywire-app"
dynamic = ["version"]
description = "Init wizard for new pywire projects"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"rich>=13.0.0",
"questionary>=2.0.0",
"jinja2>=3.1.0",
]
[project.scripts]
create-pywire-app = "create_pywire_app.main:main"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-cov",
"nox",
"ty",
"ruff",
]
[tool.ruff]
exclude = ["src/create_pywire_app/_version.py"]
[tool.ty.src]
exclude = [
"src/create_pywire_app/templates",
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/create_pywire_app/_version.py"