-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (25 loc) · 830 Bytes
/
pyproject.toml
File metadata and controls
30 lines (25 loc) · 830 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
[project]
name = "testrepo"
version = "0.0.0" # DO NOT CHANGE -- set during build
description = "This is a test application."
authors = [{name = "Paul Lockaby", email = "paul@paullockaby.com"}]
readme = "README.md"
license-files = ["LICENSE"]
requires-python = "^3.14 <3.15"
dynamic = ["dependencies"]
[tool.poetry]
packages = [{include = "testrepo", from = "src"}]
# these are deprecated but necessary for dependabot
name = "testrepo"
version = "0.0.0" # DO NOT CHANGE -- set during build
description = "This is a test application."
authors = ["Paul Lockaby <paul@paullockaby.com>"]
[tool.poetry.dependencies]
python = "^3.14 <3.15"
[tool.poetry.group.dev.dependencies]
pytest = "^9.0.1"
pytest-cov = "^7.0.0"
pytest-mypy = "^1.0.1"
[build-system]
requires = ["poetry-core>=2.0"]
build-backend = "poetry.core.masonry.api"