fix(pyargus): add typing-extensions as dependency

This commit is contained in:
Anand Balakrishnan 2023-10-04 16:51:36 -07:00
parent 10e09c0a12
commit 24f7583f88

View file

@ -8,12 +8,13 @@ classifiers = [
"Programming Language :: Python :: Implementation :: PyPy", "Programming Language :: Python :: Implementation :: PyPy",
] ]
dependencies = ["typing-extensions"]
[project.optional-dependencies] [project.optional-dependencies]
dev = [ dev = [
# Type check # Type check
"mypy", "mypy",
"typing-extensions",
# Lint code # Lint code
"ruff", "ruff",
"Flake8-pyproject", "Flake8-pyproject",