-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.38 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (50 loc) · 1.38 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
[tool.poetry]
name = "tupperware"
version = "0.1.0"
description = "🍯 Put your functions returns in a pot, please."
authors = ["João Filipe Storarri <13003392+flpStrri@users.noreply.github.com>"]
readme = "README.md"
repository = "https://github.com/flpStrri/tupperware"
keywords = ["functional", "monad", "monoid", "endofunctors", "either", "maybe", "mypy"]
license = "BSD-3-Clause"
[tool.poetry.dependencies]
python = "^3.7"
typing-extensions = "^3.7"
[tool.poetry.dev-dependencies]
pytest = "^4.6"
flake8 = "^3.8.2"
black = "^19.10b0"
mypy = "^0.770"
coverage = {extras = ["toml"], version = "^5.1"}
pytest-cov = "^2.9.0"
pytest-repeat = "^0.8.0"
pytest-randomly = "^3.3.1"
pytest-mypy-plugins = "^1.3.0"
[tool.black]
line-length = 100
target-version = ['py37']
[tool.coverage.report]
include = ["tests/*", "tupperware/*"]
exclude_lines = ["pragma: no cover", "@abstract"]
show_missing = true
skip_covered = true
skip_empty = true
fail_under = 95
[mypy]
allow_redefinition = false
disallow_untyped_calls = true
ignore_errors = false
ignore_missing_imports = true
implicit_reexport = false
strict_optional = true
strict_equality = true
no_implicit_optional = true
local_partial_types = true
warn_no_return = true
warn_unused_ignores = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unreachable = true
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"