Skip to content

Commit fc3aadf

Browse files
committed
specify dependencies in pyproject.toml as static
1 parent d22c423 commit fc3aadf

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

pyproject.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta"
99
[project]
1010
name = "table2ascii"
1111
authors = [{name = "Jonah Lawrence", email = "[email protected]"}]
12-
dynamic = ["version", "description", "readme", "dependencies", "optional-dependencies"]
12+
dynamic = ["version", "description", "readme", "optional-dependencies"]
1313
requires-python = ">=3.7"
1414
license = {file = "LICENSE"}
1515
keywords = ["table", "ascii", "unicode", "formatter"]
@@ -38,6 +38,10 @@ classifiers = [
3838
"Topic :: Software Development :: Libraries :: Python Modules",
3939
"Typing :: Typed",
4040
]
41+
dependencies = [
42+
"typing-extensions >= 3.7.4; python_version < '3.8'",
43+
"wcwidth < 1",
44+
]
4145

4246

4347
[project.urls]

0 commit comments

Comments
 (0)