-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
50 lines (45 loc) · 1.38 KB
/
pyproject.toml
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
[project]
name = "safe-result"
version = "4.0.3"
description = "A Python library providing a Result type for elegant error handling, inspired by Rust's Result type."
readme = "README.md"
authors = [{ name = "overflowy", email = "overflowy@riseup.net" }]
requires-python = ">=3.10"
license = { text = "MIT" }
keywords = [
"error-handling",
"result",
"rust-inspired",
"functional",
"type-safety",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://github.com/overflowy/safe-result"
Documentation = "https://github.com/overflowy/safe-result#readme"
Issues = "https://github.com/overflowy/safe-result/issues"
Source = "https://github.com/overflowy/safe-result"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/safe_result"]
[tool.pytest.ini_options]
pythonpath = ["src"]
[dependency-groups]
dev = [
"pytest>=8.3.5",
"pytest-asyncio>=0.25.3",
"coverage[toml]>=7.5.5",
"pytest-cov>=5.0.0",
]