Skip to content
pyproject.toml 1.01 KiB
Newer Older
[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}
Dom Sekotill's avatar
Dom Sekotill committed
types-requests = {version="~2.0", optional=true}

[tool.poetry.extras]
jsonpath = ["jsonpath-python"]
parse = ["parse"]
Dom Sekotill's avatar
Dom Sekotill committed
dxf = ["types-requests"]

[[tool.poetry.packages]]
include = "jsonpath-stubs"

[[tool.poetry.packages]]
include = "parse-stubs"

Dom Sekotill's avatar
Dom Sekotill committed
[[tool.poetry.packages]]
include = "dxf-stubs"

[tool.isort]
force_single_line = true

[tool.mypy]
strict = true
warn_unused_configs = true