Newer
Older
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
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "type-stubs"
version = "1.0"
description = "Collected type stubs for untyped third party packages"
readme = "README.md"
license = "Apache-2.0"
include = ["LICENCE.txt"]
authors = [
"Dom Sekotill <dom.sekotill@kodo.org.uk>",
]
repository = "https://code.kodo.org.uk/dom/type-stubs"
[tool.poetry.urls]
"Issues" = "https://code.kodo.org.uk/dom/type-stubs/-/issues"
[tool.poetry.dependencies]
python = "^3.9"
typing-extensions = ">=3.7.4"
jsonpath-python = {version="~1.0.0", optional=true}
parse = {version="~1.19.0", optional=true}
[tool.poetry.extras]
jsonpath = ["jsonpath-python"]
parse = ["parse"]
[[tool.poetry.packages]]
include = "jsonpath-stubs"
from = "stubs"
[[tool.poetry.packages]]
include = "parse-stubs"
from = "stubs"
[tool.isort]
force_single_line = true
[tool.mypy]
strict = true
warn_unused_configs = true