-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 993 Bytes
/
Copy pathpyproject.toml
File metadata and controls
51 lines (45 loc) · 993 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
43
44
45
46
47
48
49
50
51
[project]
name = "fizz-buzz"
version = "0.1.0"
description = "An overengineered, deliberately functional FizzBuzz"
readme = "README.md"
requires-python = ">=3.15"
authors = [
{ name = "Philipp Kretzschmar", email = "philipp.kretzschmar@gmail.com" },
]
dependencies = [
"beaupy>=3.12.0",
"returns>=0.29.0",
"rich-click>=1.9.8",
]
[project.scripts]
fizzbuzz = "fizz_buzz.cli:main"
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-xdist>=3.8.0",
"ruff>=0.15.21",
"ty>=0.0.66",
"well-actually>=0.12.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[[tool.uv.index]]
name = "pypi"
url = "https://pypi.org/simple"
[tool.hatch.build.targets.wheel]
packages = ["src/fizz_buzz"]
[tool.pytest.ini_options]
addopts = [
"-n", "2",
"--tb=short",
"--strict-markers",
]
testpaths = [
"tests",
]
markers = [
"unit: pure logic in isolation, no real machinery",
"integration: real local machinery such as a subprocess or the filesystem",
]