Python setup file : Add missing comma

This commit is contained in:
Magne Sjaastad 2020-04-19 21:37:09 +02:00
parent dbe782a9a0
commit 2461716909

View File

@ -18,6 +18,6 @@ setup(
url='http://www.resinsight.org',
license=license,
packages=['rips'],
package_data={'rips': ['*.py', 'generated/*.py', 'PythonExamples/*.py', 'tests/*.py']}
package_data={'rips': ['*.py', 'generated/*.py', 'PythonExamples/*.py', 'tests/*.py']},
install_requires=['grpcio>=1.20.0']
)