setup.py: fix syntax errors (missing commas)

Change-Id: Ia53a659ad9652d582e2bf4a039a3e18631435072
Fixes: 2b15e315 "setup: add missing pyyaml to setup.py and README.md"
Fixes: 93aac3ab "pySim-shell: fix compatibility problem with cmd2 >= 2.0.0 (Settable)"
This commit is contained in:
Vadim Yanitskiy 2023-05-28 17:13:19 +07:00
parent c296cb593e
commit bca01523df
1 changed files with 3 additions and 3 deletions

View File

@ -17,11 +17,11 @@ setup(
"construct >= 2.9.51", "construct >= 2.9.51",
"bidict", "bidict",
"gsm0338", "gsm0338",
"pyyaml >= 5.1" "pyyaml >= 5.1",
"termcolor", "termcolor",
"colorlog", "colorlog",
"pycryptodome" "pycryptodome",
"packaging" "packaging",
], ],
scripts=[ scripts=[
'pySim-prog.py', 'pySim-prog.py',