-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 821 Bytes
/
pyproject.toml
File metadata and controls
40 lines (34 loc) · 821 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
[project]
name = "optional.py"
version = "2.0.0"
description = "An implementation of the Optional object in Python"
license = "MIT"
authors = [
{ name = "Chad Befus", email = "crbefus@gmail.com" },
{ name = "Derek Passen", email = "dpassen1@gmail.com" },
]
readme = "README.md"
keywords = ["optional datatype library"]
requires-python = ">= 3.10"
dependencies = []
[build-system]
requires = ["uv_build>=0.10.0,<0.11.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"basedpyright>=1.31.7",
"coverage>=7.10.7",
"coveralls>=4.0.1",
"pytest>=8.4.2",
"pytest-cov>=7.0.0",
"ruff>=0.15.0",
"typing-extensions>=4.15.0",
]
[tool.uv.build-backend]
module-name = "optional"
[tool.pytest.ini_options]
addopts = "--cov=optional"
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "I"]