-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (30 loc) · 765 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (30 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
[build-system]
requires = ["hatchling>=1.24"]
build-backend = "hatchling.build"
[project]
name = "python-skeleton"
version = "0.0.1"
description = "Skeleton package for Python modules."
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [{ name = "Michael Ricks-Aherne", email = "miketwo@gmail.com" }]
dependencies = []
[project.optional-dependencies]
dev = [
"pytest>=8",
"pytest-watch>=4",
"ruff>=0.6",
]
[project.urls]
Repository = "https://github.com/streeter/python-skeleton"
[tool.hatch.build.targets.wheel]
packages = ["src/skeleton"]
[tool.ruff]
line-length = 88
target-version = "py310"
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP"]
[tool.ruff.format]
quote-style = "double"