-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (25 loc) · 699 Bytes
/
pyproject.toml
File metadata and controls
29 lines (25 loc) · 699 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
[project]
name = "automate-boring-stuff"
version = "1.0.0"
description = "Loosely follows the Automate the Boring Stuff Udemy course by Al Sweigart"
authors = [{ name = "pythoninthegrass", email = "4097471+pythoninthegrass@users.noreply.github.com" }]
requires-python = ">=3.11,<3.12"
readme = "README.md"
license = "Unlicense"
dependencies = []
[project.optional-dependencies]
dev = [
"ipython>=8.4.0,<9",
"rich>=13.4.2,<14",
"ruff>=0.12.11",
]
test = [
"pytest>=7.1.3,<8",
"pytest-asyncio>=0.21.1,<0.22",
"pytest-cov>=4.0.0,<5",
"pytest-datafiles>=3.0.0,<4",
"pytest-xdist>=3.3.1,<4",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"