-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (71 loc) · 1.62 KB
/
pyproject.toml
File metadata and controls
81 lines (71 loc) · 1.62 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
[tool.poetry]
name = "orbiteer"
version = "0.2.0"
description = "An optimizing chunking command runner"
readme = "README.md"
authors = ["Avery Fischer <avery@averyjfischer.com>"]
license = "MIT"
repository = "https://github.com/biggerfisch/orbiteer"
[tool.poetry.dependencies]
python = ">=3.7,<4.0"
typing-extensions = "^4.1.1"
[tool.poetry.dev-dependencies]
coverage = {extras = ["toml"], version = "^6.4"}
dlint = "^0.12.0"
flake8 = "^4.0.1"
flake8-2020 = "^1.6.1"
flake8-bugbear = "^22.4.25"
flake8-comprehensions = "^3.10.0"
flake8-eradicate = "^1.2.1"
mypy = "^0.961"
black = "^22.3.0"
isort = "^5.10.1"
pytest = "^7.1.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = 'black'
[tool.black]
line-length = 120
target-version = ['py39']
[tool.mypy]
files = "**/*.py"
exclude = ".venv/*"
ignore_errors = false
warn_no_return = true
strict_equality = true
strict_optional = true
warn_unreachable = true
check_untyped_defs = true
namespace_packages = true
warn_unused_configs = true
warn_unused_ignores = true
no_implicit_optional = true
warn_redundant_casts = true
disallow_any_generics = true
disallow_untyped_defs = true
disallow_untyped_calls = true
explicit_package_bases = true
disallow_incomplete_defs = true
disallow_untyped_decorators = true
[[tool.mypy.overrides]]
module = [
'matplotlib',
'matplotlib.pyplot',
]
ignore_missing_imports = true
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"tests",
]
[tool.coverage.run]
branch = true
command_line = "-m pytest"
source = ["."]
omit = [
"tests/*",
]
[tool.coverage.report]
show_missing = true