added py.typed files

This commit is contained in:
Will McGugan
2022-10-05 21:39:14 +01:00
parent 7196a0f849
commit 3a58f3b6ca

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "textual"
version = "0.2.0b3"
version = "0.2.0b4"
homepage = "https://github.com/Textualize/textual"
description = "Modern Text User Interface framework"
authors = ["Will McGugan <will@textualize.io>"]
@@ -16,6 +16,17 @@ classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Typing :: Typed",
]
include = [
"src/textual/py.typed",
"src/textual/cli/py.typed",
"src/textual/css/py.typed",
"src/textual/devtools/py.typed",
"src/textual/drivers/py.typed",
"src/textual/layouts/py.typed",
"src/textual/renderables/py.typed",
"src/textual/widgets/py.typed"
]
[tool.poetry.scripts]
@@ -40,7 +51,7 @@ dev = ["aiohttp", "click", "msgpack"]
[tool.poetry.dev-dependencies]
pytest = "^7.1.3"
black = "^22.3.0"
mypy = "^0.950"
mypy = "^0.982"
pytest-cov = "^2.12.1"
mkdocs = "^1.3.0"
mkdocstrings = {extras = ["python"], version = "^0.19.0"}