no need to include py.typed as poetry includes everything not in .gitignore

This commit is contained in:
Nathan Page 2021-06-06 16:28:34 -04:00
parent 0b667ec048
commit f43893290f
1 changed files with 6 additions and 7 deletions

View File

@ -8,8 +8,8 @@ authors = ["Will McGugan <willmcgugan@gmail.com>"]
license = "MIT"
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
@ -19,19 +19,18 @@ classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Typing :: Typed"
"Typing :: Typed",
]
include = ["rich/py.typed"]
[tool.poetry.dependencies]
python = "^3.6"
typing-extensions = {version = "^3.7.4", python = "<3.8"}
dataclasses = {version=">=0.7,<0.9", python = "~3.6"}
typing-extensions = { version = "^3.7.4", python = "<3.8" }
dataclasses = { version = ">=0.7,<0.9", python = "~3.6" }
pygments = "^2.6.0"
commonmark = "^0.9.0"
colorama = "^0.4.0"
ipywidgets = {version = "^7.5.1", optional = true}
ipywidgets = { version = "^7.5.1", optional = true }
[tool.poetry.extras]