-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
68 lines (62 loc) · 1.75 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[tool.poetry]
name = "diamond-miner"
version = "1.1.0"
description = "High-speed, Internet-scale, load-balanced paths discovery."
license = "MIT"
authors = [
"Kevin Vermeulen <[email protected]>",
"Matthieu Gouel <[email protected]>",
"Maxime Mouchet <[email protected]>"
]
readme = "README.md"
homepage = "https://github.com/dioptra-io/diamond-miner"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Topic :: Internet",
"Typing :: Typed"
]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
pych-client = "^0.4.0"
pygfc = "^1.0.5"
zstandard = "^0.21.0"
tqdm = "^4.66.1"
[tool.poetry.dev-dependencies]
bumpversion = "^0.6.0"
coverage = {extras = ["toml"], version = "^7.3.2"}
hypothesis = "^6.88.1"
mkdocs-bibtex = "^2.11.0"
mkdocs-material = "^9.4.7"
mkdocstrings = {extras = ["python"], version = "^0.23.0"}
mypy = "^1.6.1"
pytest = "^7.4.3"
pytest-cov = "^4.1.0"
[tool.pytest.ini_options]
addopts = "--capture=no --doctest-modules --ignore=examples --log-cli-level=info --strict-markers --verbosity=2"
[tool.mypy]
disallow_untyped_calls = true
disallow_untyped_defs = true
ignore_missing_imports = true
implicit_reexport = false
no_implicit_optional = true
strict_equality = true
strict_optional = true
warn_no_return = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_ignores = true
[tool.coverage.report]
exclude_lines = [
"if TYPE_CHECKING:$",
"if __name__ == \"__main__\":$",
"pass$",
"\\s\\.\\.\\.$",
"raise NotImplementedError$"
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"