-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 821 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (29 loc) · 821 Bytes
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
[tool.poetry]
name = "mypy_typing_asserts"
version = "0.1.2"
description = "Adds the ability to _assert_ types when typechecking to mypy"
authors = ["Joshua Cannon <joshdcannon@gmail.com>"]
readme = "README.md"
homepage = "https://github.com/thejcannon/mypy-typing-asserts"
repository = "https://github.com/thejcannon/mypy-typing-asserts"
keywords = ["mypy"]
classifiers = [
"Typing :: Typed"
]
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
black = "^22.1.0"
mypy = "^0.931"
virtualenv = "^20.13.1"
isort = "^5.10.1"
[tool.isort]
extend_skip = ".pytest_cache"
profile = "black"
[tool.mypy]
# This can be useful for local debugging
plugins = "mypy_typing_asserts.mypy_plugin"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"