-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
54 lines (40 loc) · 993 Bytes
/
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
51
52
53
54
[tool.poetry]
name = "optional.py"
version = "2.0.0"
description = "An implementation of the Optional object in Python"
license = "MIT"
authors = [
"Chad Befus <[email protected]>",
"Derek Passen <[email protected]>"
]
readme = "README.md"
repository = "https://github.com/Python-Optional/optional.py"
homepage = "https://github.com/Python-Optional/optional.py"
packages = [
{ include = "optional" },
]
keywords = ["optional datatype library"]
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.group.dev.dependencies]
ruff = "^0.8.0"
mypy = "^1.6.0"
[tool.poetry.group.test.dependencies]
pytest = ">=7.2,<9.0"
pytest-cov = ">=4,<6"
coveralls = "^3.3"
coverage = "^6.5"
[tool.coverage.report]
exclude_lines = ["@overload"]
[tool.pytest.ini_options]
addopts = "--cov=optional"
testpaths = [
"tests",
]
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "I"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"