mirror of https://github.com/Textualize/rich.git
no need to include py.typed as poetry includes everything not in .gitignore
This commit is contained in:
parent
0b667ec048
commit
f43893290f
|
@ -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]
|
||||
|
|
Loading…
Reference in New Issue