-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (39 loc) · 939 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
[tool.doks]
auto = true
[tool.poetry]
name = "xmod"
version = "1.8.1"
description = "🌱 Turn any object into a module 🌱"
authors = ["Tom Ritchford <[email protected]>"]
license = "MIT"
readme = "README.md"
include = ["xmod.pyi"]
repository = "https://github.com/rec/xmod"
homepage = "https://github.com/rec/xmod"
documentation = "https://rec.github.io/xmod"
[tool.poetry.dependencies]
python = ">=3.8"
[tool.poetry.group.dev.dependencies]
black = "*"
coverage = "*"
flake8 = "*"
isort = "*"
mypy = "*"
pytest = "*"
ruff = "*"
[tool.coverage.run]
branch = true
source = ["xmod"]
[tool.coverage.report]
fail_under = "91"
skip_covered = true
exclude_lines = ["pragma: no cover", "if False:", "if __name__ == .__main__.:", "raise NotImplementedError"]
[tool.ruff]
line-length = 88
[tool.ruff.format]
quote-style = "single"
[tool.mypy]
strict = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"